diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm
index 5340bd2dd5..29174f7e74 100644
--- a/code/game/machinery/lightswitch.dm
+++ b/code/game/machinery/lightswitch.dm
@@ -86,4 +86,14 @@
..(severity)
return
power_change()
- ..(severity)
\ No newline at end of file
+ ..(severity)
+
+//Breakers for event maps
+
+/obj/machinery/light_switch/breaker
+ name = "lights breaker"
+ desc = "A breaker for controlling power to the lights connected to the circuit."
+ icon = 'icons/obj/power_breaker.dmi'
+ icon_state = "light1"
+ on = 0
+
diff --git a/code/game/objects/items/weapons/capture_crystal.dm b/code/game/objects/items/weapons/capture_crystal.dm
index 450a2c6e39..440c647835 100644
--- a/code/game/objects/items/weapons/capture_crystal.dm
+++ b/code/game/objects/items/weapons/capture_crystal.dm
@@ -844,7 +844,13 @@
list(/mob/living/simple_mob/vore/sheep),
list(/mob/living/simple_mob/vore/weretiger),
list(/mob/living/simple_mob/vore/alienanimals/skeleton),
- list(/mob/living/simple_mob/vore/alienanimals/dustjumper)
+ list(/mob/living/simple_mob/vore/alienanimals/dustjumper),
+ list(/mob/living/simple_mob/vore/cryptdrake),
+ list(/mob/living/simple_mob/vore/stalker),
+ list(/mob/living/simple_mob/vore/horse/kelpie),
+ list(/mob/living/simple_mob/vore/scrubble),
+ list(/mob/living/simple_mob/vore/sonadile),
+ list(/mob/living/simple_mob/vore/devil)
)
/obj/item/capture_crystal/random/Initialize()
diff --git a/code/game/objects/items/weapons/paint.dm b/code/game/objects/items/weapons/paint.dm
index 3162718b7d..d301828f32 100644
--- a/code/game/objects/items/weapons/paint.dm
+++ b/code/game/objects/items/weapons/paint.dm
@@ -26,8 +26,8 @@ var/global/list/cached_icons = list()
else
return ..()
-/obj/item/weapon/reagent_containers/glass/paint/New()
- ..()
+/obj/item/weapon/reagent_containers/glass/paint/Initialize()
+ .=..()
if(paint_type)
reagents.add_reagent("paint", volume, paint_type)
diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm
index 95aac206ab..b6d97762dc 100644
--- a/code/game/objects/structures/ghost_pods/event_vr.dm
+++ b/code/game/objects/structures/ghost_pods/event_vr.dm
@@ -46,6 +46,10 @@
"Frost Giant Spider" = /mob/living/simple_mob/animal/giant_spider/frost,
"Nurse Giant Spider" = /mob/living/simple_mob/animal/giant_spider/nurse/eggless,
"Giant Spider Queen" = /mob/living/simple_mob/animal/giant_spider/nurse/queen/eggless,
+ "Red Dragon" = /mob/living/simple_mob/vore/aggressive/dragon,
+ "Phoron Dragon" = /mob/living/simple_mob/vore/aggressive/dragon/virgo3b,
+ "Space Dragon" = /mob/living/simple_mob/vore/aggressive/dragon/space,
+ "Crypt Drake" = /mob/living/simple_mob/vore/cryptdrake,
"Weretiger" = /mob/living/simple_mob/vore/weretiger,
"Catslug" = /mob/living/simple_mob/vore/alienanimals/catslug,
"Squirrel" = /mob/living/simple_mob/vore/squirrel/big,
@@ -60,7 +64,13 @@
"Scel (Blue)" = /mob/living/simple_mob/vore/scel/blue,
"Scel (Purple)" = /mob/living/simple_mob/vore/scel/purple,
"Scel (Red)" = /mob/living/simple_mob/vore/scel/red,
- "Scel (Green)" = /mob/living/simple_mob/vore/scel/green
+ "Scel (Green)" = /mob/living/simple_mob/vore/scel/green,
+ "Cave Stalker" = /mob/living/simple_mob/vore/stalker,
+ "Kelpie" = /mob/living/simple_mob/vore/horse/kelpie,
+ "Scrubble" = /mob/living/simple_mob/vore/scrubble,
+ "Sonadile" = /mob/living/simple_mob/vore/sonadile,
+ "kururak" = /mob/living/simple_mob/animal/sif/kururak,
+ "Statue of Temptation" = /mob/living/simple_mob/vore/devil
)
/obj/structure/ghost_pod/ghost_activated/maintpred/create_occupant(var/mob/M)
diff --git a/code/modules/awaymissions/redgate.dm b/code/modules/awaymissions/redgate.dm
index c2de8cf370..06e3b748b7 100644
--- a/code/modules/awaymissions/redgate.dm
+++ b/code/modules/awaymissions/redgate.dm
@@ -1077,6 +1077,96 @@
name = "Fantasy house"
icon_state = "green"
+//WELCOME TO THE JUNGLE
+
+/area/redgate/jungle
+ name = "Jungle"
+ icon_state = "red"
+ requires_power = 0
+
+/area/redgate/jungle/aboveground
+ name = "Jungle"
+ icon_state = "red"
+
+/area/redgate/jungle/temple
+ name = "Jungle temple"
+ icon_state = "yellow"
+
+/area/redgate/jungle/westcaves
+ name = "Jungle west caves"
+ icon_state = "yellow"
+
+/area/redgate/jungle/eastcaves
+ name = "Jungle east caves"
+ icon_state = "yellow"
+
+/area/redgate/jungle/southcaves
+ name = "Jungle south caves"
+ icon_state = "yellow"
+
+/area/redgate/jungle/deepforest
+ name = "Jungle deep forest"
+ icon_state = "yellow"
+
+/area/redgate/jungle/facilitynw
+ name = "Jungle facility north-west"
+ icon_state = "yellow"
+ lightswitch = 0
+
+/area/redgate/jungle/facilityne
+ name = "Jungle facility north-east"
+ icon_state = "yellow"
+ lightswitch = 0
+
+/area/redgate/jungle/facilitysw
+ name = "Jungle facility south-west"
+ icon_state = "yellow"
+ lightswitch = 0
+
+/area/redgate/jungle/facilityse
+ name = "Jungle facility south-east"
+ icon_state = "yellow"
+ lightswitch = 0
+
+/area/redgate/jungle/underwaterwest
+ name = "Jungle underwater west"
+ icon_state = "purple"
+ forced_ambience = list('sound/effects/underwater.ogg')
+
+/area/redgate/jungle/underwaterswamp
+ name = "Jungle underwater swamp"
+ icon_state = "purple"
+ forced_ambience = list('sound/effects/underwater.ogg')
+
+/area/redgate/jungle/underwaterpong
+ name = "Jungle underwater pond"
+ icon_state = "purple"
+ forced_ambience = list('sound/effects/underwater.ogg')
+
+/area/redgate/jungle/underwatercave
+ name = "Jungle underwater cave"
+ icon_state = "yellow"
+
+/area/redgate/jungle/underwatercaveswamp
+ name = "Jungle underwater swamp cave"
+ icon_state = "yellow"
+
+/area/redgate/jungle/underwatercavepond
+ name = "Jungle underwater pond cave"
+ icon_state = "yellow"
+
+/area/redgate/jungle/murderroom
+ name = "Jungle trophy room"
+ icon_state = "yellow"
+
+/area/redgate/jungle/facilitybar
+ name = "Jungle facility bar"
+ icon_state = "yellow"
+
+/area/redgate/jungle/facilitycasino
+ name = "Jungle facility casino"
+ icon_state = "yellow"
+
//HIIIIGHWAY TO THE! LASER-DOME!
/area/redgate/laserdome
name = "Laserdome Safe Zone"
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/devil.dm b/code/modules/mob/living/simple_mob/subtypes/vore/devil.dm
new file mode 100644
index 0000000000..2d945ea4c6
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/devil.dm
@@ -0,0 +1,267 @@
+/mob/living/simple_mob/vore/devil
+ name = "Statue of Temptation"
+ desc = "A tall statue made of red-tinted metal in the shape of some sort of demon or devil."
+ catalogue_data = list(/datum/category_item/catalogue/fauna/devil)
+ tt_desc = "Metal Statue"
+ icon = 'icons/mob/vore64x64.dmi'
+ icon_dead = "devil-dead"
+ icon_living = "devil"
+ icon_state = "devil"
+ icon_rest = "devil"
+ faction = "devil"
+ old_x = -16
+ old_y = 0
+ default_pixel_x = -16
+ pixel_x = -16
+ pixel_y = 0
+ friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles")
+ response_help = "bumps"
+ response_disarm = "shoves"
+ response_harm = "attacks"
+ movement_cooldown = 0
+ harm_intent_damage = 7
+ melee_damage_lower = 3
+ melee_damage_upper = 10
+ maxHealth = 100
+ attacktext = list("bites")
+ see_in_dark = 8
+ minbodytemp = 0
+ ai_holder_type = /datum/ai_holder/simple_mob/vore/devil
+
+ vore_bump_chance = 25
+ vore_digest_chance = 50
+ vore_escape_chance = 5
+ vore_pounce_chance = 1000
+ vore_active = 1
+ vore_icons = 1
+ vore_icons = SA_ICON_LIVING | SA_ICON_REST
+ vore_capacity = 1
+ swallowTime = 50
+ vore_ignores_undigestable = TRUE
+ vore_default_mode = DM_DIGEST
+ vore_pounce_maxhealth = 1000
+ vore_bump_emote = "pounces on"
+
+/mob/living/simple_mob/vore/devil/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "stomach"
+ B.desc = "It turns out that this was not just any old statue, but some form of android waiting for its chance to ambush you. The moment that it laid its hands on you, your fate was decided. The jaws of the machine parted, if you could call them that, and immediately enveloped your head. The inside was hot and slick, but dry. The textures were startlingly realistic, the base was clearly a tongue, the top palate of the mouth was hard but somewhat pliable. Not that you had time to admire it before the rest of your body was stuffed inside. Through a short passage down through a rubbery tube of a gullet, mechanical contractions squeezing you down from behind, you're quickly deposited in something much resembling a stomach. Amid the sounds of mechanical whirrs, you can heard glorping, gurgling and burbling from unknown sources. The walls wrap firmly around your body, deliberately dramping you up into the smallest space that the machine can crush you into, whilst the synthetic lining around you ripples across your hunched up form. You can even see yourself, the gut itself is backlit by some eerie red glow, just enough to tell exactly what is happening to you. It doesn't help that you can see the drooling fluids glistening in the dim light."
+ B.mode_flags = DM_FLAG_THICKBELLY
+ B.belly_fullscreen = "a_synth_flesh_mono_hole"
+ B.digest_brute = 2
+ B.digest_burn = 2
+ B.digest_oxy = 1
+ B.digestchance = 100
+ B.absorbchance = 0
+ B.escapechance = 5
+ B.selective_preference = DM_DIGEST
+ B.escape_stun = 5
+
+/datum/category_item/catalogue/fauna/devil
+ name = "Extra-Realspace Machine - Statue of Temptation"
+ desc = "Classification: Synthetic Lifeform\
+
\
+ The origin of this machine is not well understood, neither is its purpose nor whether it is sapient. However, we have been able to study a little about their behaviour. \
+ These creatures seem to disquise themselves as statues, making no movement what so ever when being directly observed. There is little to suggest they move at all when there is nobody present either. \
+ However, when lifeforms exist nearby, these oddly curvaceous devils spring to life, lighting up and attempting to devour all living things. We assume they reduce their targets to biofuel to sustain themselves, but they have been known to break their disguise when attacked to defend themselves."
+ value = CATALOGUER_REWARD_HARD
+
+/mob/living/simple_mob/vore/devil/PounceTarget(var/mob/living/M, var/successrate = 100)
+ vore_pounce_cooldown = world.time + 1 SECONDS // don't attempt another pounce for a while
+ if(prob(successrate)) // pounce success!
+ M.Weaken(5)
+ M.visible_message("\The [src] pounces on \the [M]!!")
+ else // pounce misses!
+ M.visible_message("\The [src] attempts to pounce \the [M] but misses!!")
+ playsound(src, 'sound/weapons/punchmiss.ogg', 25, 1, -1)
+
+ if(will_eat(M) && (!M.canmove || vore_standing_too)) //if they're edible then eat them too
+ return EatTarget(M)
+ else
+ return //just leave them
+
+//AI
+
+/datum/ai_holder/simple_mob/vore/devil
+ wander = FALSE
+
+/datum/ai_holder/simple_mob/vore/devil/proc/check_witness(list/possible_targets, has_targets_list)
+ if(!has_targets_list)
+ possible_targets = list_targets()
+ for(var/mob/living/L in possible_targets)
+ if(!check_attacker(L) && !L.stat) //If that person is awake and hasn't attacked the mob.
+ if((L.dir == 1 && holder.y >= L.y) || (L.dir == 2 && holder.y <= L.y) || (L.dir == 4 && holder.x >= L.x) || (L.dir == 8 && holder.x <= L.x)) //stop attacking if they look at you
+ return TRUE
+ return FALSE
+
+/datum/ai_holder/simple_mob/vore/devil/find_target(list/possible_targets, has_targets_list)
+ if(!vore_hostile)
+ return ..()
+ if(!isanimal(holder)) //Only simplemobs have the vars we need
+ return ..()
+ var/mob/living/simple_mob/vore/H = holder
+ if(H.vore_fullness >= H.vore_capacity) //Don't beat people up if we're full
+ return ..()
+ ai_log("find_target() : Entered.", AI_LOG_TRACE)
+
+ . = list()
+ if(!has_targets_list)
+ possible_targets = list_targets()
+ var/list/valid_mobs = list()
+ for(var/mob/living/possible_target in possible_targets)
+// if(check_witness())
+// set_stance(STANCE_IDLE)
+// continue
+ if(!can_attack(possible_target))
+ continue
+ . |= possible_target
+ if(!isliving(possible_target))
+ continue
+ if(vore_check(possible_target))
+ valid_mobs |= possible_target
+
+ var/new_target
+ if(valid_mobs.len)
+ if(H.icon_state != "devil_target" || H.icon_state != "devil_target-1")
+ H.icon_living = "devil_target"
+ H.update_icon()
+ new_target = pick(valid_mobs)
+ else if(hostile)
+ if(H.icon_state != "devil_target" || H.icon_state != "devil_target-1")
+ H.icon_living = "devil_target"
+ H.update_icon()
+ new_target = pick(.)
+ if(!new_target)
+ if(H.icon_state == "devil_target" || H.icon_state == "devil_target-1")
+ H.icon_living = "devil"
+ H.update_icon()
+ return null
+ give_target(new_target)
+ return new_target
+
+/datum/ai_holder/simple_mob/vore/devil/can_attack(atom/movable/the_target, var/vision_required = TRUE)
+ ai_log("can_attack() : Entering.", AI_LOG_TRACE)
+ if(!can_see_target(the_target) && vision_required)
+ return FALSE
+ if(!belly_attack)
+ if(isbelly(holder.loc))
+ return FALSE
+ if(check_witness()) //If anyone is looking, cancel the attack
+ set_stance(STANCE_IDLE)
+ return FALSE
+ if(isliving(the_target))
+ var/mob/living/L = the_target
+ if(ishuman(L) || issilicon(L))
+ if(L.key && !L.client) // SSD players get a pass
+ return FALSE
+ if(L.stat)
+ if(L.stat == DEAD && !handle_corpse) // Leave dead things alone
+ return FALSE
+ if(L.stat == UNCONSCIOUS) // Do we have mauling? Yes? Then maul people who are sleeping but not SSD
+ if(mauling)
+ return TRUE
+ //VOREStation Add Start
+ else if(unconscious_vore && L.allowmobvore)
+ var/mob/living/simple_mob/vore/eater = holder
+ if(eater.will_eat(L))
+ return TRUE
+ else
+ return FALSE
+ //VOREStation Add End
+ else
+ return FALSE
+// if(!check_attacker(L))
+// if((L.dir == 1 && holder.y >= L.y) || (L.dir == 2 && holder.y <= L.y) || (L.dir == 4 && holder.x >= L.x) || (L.dir == 8 && holder.x <= L.x)) //stop attacking if they look at you
+// set_stance(STANCE_IDLE)
+// return FALSE
+ //VOREStation add start
+ else if(forgive_resting && !isbelly(holder.loc)) //Doing it this way so we only think about the other conditions if the var is actually set
+ if((holder.health == holder.maxHealth) && !hostile && (L.resting || L.weakened || L.stunned)) //If our health is full, no one is fighting us, we can forgive
+ var/mob/living/simple_mob/vore/eater = holder
+ if(!eater.will_eat(L)) //We forgive people we can eat by eating them
+ set_stance(STANCE_IDLE)
+ return FALSE //Forgiven
+ //VOREStation add end
+ if(holder.IIsAlly(L))
+ return FALSE
+ return TRUE
+
+ if(istype(the_target, /obj/mecha))
+ var/obj/mecha/M = the_target
+ if(M.occupant)
+ return can_attack(M.occupant)
+ return destructive // Empty mechs are 'neutral'.
+
+ if(istype(the_target, /obj/machinery/porta_turret))
+ var/obj/machinery/porta_turret/P = the_target
+ if(P.stat & BROKEN)
+ return FALSE // Already dead.
+ if(P.faction == holder.faction)
+ return FALSE // Don't shoot allied turrets.
+ if(!P.raised && !P.raising)
+ return FALSE // Turrets won't get hurt if they're still in their cover.
+ return TRUE
+
+ if(istype(the_target, /obj/structure/blob)) // Blob mobs are always blob faction, but the blob can anger other things.
+ var/obj/structure/blob/Blob = the_target
+ if(holder.faction == Blob.faction)
+ return FALSE
+
+ return TRUE
+
+/datum/ai_holder/simple_mob/vore/devil/engage_target()
+ ai_log("engage_target() : Entering.", AI_LOG_DEBUG)
+
+ // Can we still see them?
+ if(!target || !can_attack(target))
+ ai_log("engage_target() : Lost sight of target.", AI_LOG_TRACE)
+ if(lose_target()) // We lost them (returns TRUE if we found something else to do)
+ ai_log("engage_target() : Pursuing other options (last seen, or a new target).", AI_LOG_TRACE)
+ return
+
+ var/distance = get_dist(holder, target)
+ ai_log("engage_target() : Distance to target ([target]) is [distance].", AI_LOG_TRACE)
+ holder.face_atom(target)
+ last_conflict_time = world.time
+
+ // Do a 'special' attack, if one is allowed.
+// if(prob(special_attack_prob) && (distance >= special_attack_min_range) && (distance <= special_attack_max_range))
+ if(holder.ICheckSpecialAttack(target))
+ ai_log("engage_target() : Attempting a special attack.", AI_LOG_TRACE)
+ on_engagement(target)
+ if(special_attack(target)) // If this fails, then we try a regular melee/ranged attack.
+ ai_log("engage_target() : Successful special attack. Exiting.", AI_LOG_DEBUG)
+ return
+
+ // Stab them.
+ else if(distance <= 1 && !pointblank)
+ ai_log("engage_target() : Attempting a melee attack.", AI_LOG_TRACE)
+ on_engagement(target)
+ melee_attack(target)
+
+ else if(distance <= 1 && !holder.ICheckRangedAttack(target)) // Doesn't have projectile, but is pointblank
+ ai_log("engage_target() : Attempting a melee attack.", AI_LOG_TRACE)
+ on_engagement(target)
+ melee_attack(target)
+
+ // Shoot them.
+ else if(holder.ICheckRangedAttack(target) && (distance <= max_range(target)) )
+ on_engagement(target)
+ if(firing_lanes && !test_projectile_safety(target))
+ // Nudge them a bit, maybe they can shoot next time.
+ var/turf/T = get_step(holder, pick(cardinal))
+ if(T)
+ holder.IMove(T) // IMove() will respect movement cooldown.
+ holder.face_atom(target)
+ ai_log("engage_target() : Could not safely fire at target. Exiting.", AI_LOG_DEBUG)
+ return
+
+ ai_log("engage_target() : Attempting a ranged attack.", AI_LOG_TRACE)
+ ranged_attack(target)
+
+ // Run after them.
+ else if(!stand_ground)
+ ai_log("engage_target() : Target ([target]) too far away. Exiting.", AI_LOG_DEBUG)
+ set_stance(STANCE_APPROACH)
+
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm b/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm
new file mode 100644
index 0000000000..1b027bd02c
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/plants.dm
@@ -0,0 +1,189 @@
+/////////////////////////////////////Man-Trap/////////////////////////////////////////
+
+/mob/living/simple_mob/vore/mantrap
+ name = "Mantrap"
+ desc = "This massive plant lays in wait in the brush, and can be very difficult to spot. When laying open on the ground, the trap mechanism resembles a massive saw-toothed maw."
+ catalogue_data = list(/datum/category_item/catalogue/fauna/mantrap)
+ tt_desc = "Dionaea Humanis"
+ icon = 'icons/mob/vore.dmi'
+ icon_dead = "flytrap-dead"
+ icon_living = "flytrap"
+ icon_state = "flytrap"
+ icon_rest = "flytrap"
+ faction = "plants"
+ harm_intent_damage = 0
+ melee_damage_lower = 0
+ melee_damage_upper = 0
+ maxHealth = 100
+ attacktext = list("flinches at")
+ see_in_dark = 8
+ minbodytemp = 0
+ ai_holder_type = /datum/ai_holder/simple_mob/passive/mantrap
+
+ density = 0
+ anchored = 1
+
+ vore_bump_chance = 100
+ vore_digest_chance = 50
+ vore_escape_chance = 5
+ vore_pounce_chance = 1000
+ vore_active = 1
+ vore_icons = 1
+ vore_icons = SA_ICON_LIVING | SA_ICON_REST
+ vore_capacity = 1
+ swallowTime = 1
+ vore_ignores_undigestable = TRUE
+ vore_default_mode = DM_SELECT
+ vore_pounce_maxhealth = 1000
+ vore_bump_emote = "encloses on"
+
+/mob/living/simple_mob/vore/mantrap/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "trap"
+ B.desc = "As you step onto the large leaves of the mantrap, they suddenly shoot up and snap shut around you, encasing you in a fleshy-feeling gut. The saw-toothed spikes around the edge of the leaves interlock with one another and exerts a tremendous pressure on your body. Copious volumes of fluids begin to seep in from the walls themselves, rapidly coating your body and pooling around you, all of your movements only seem to speed up this process.."
+ B.mode_flags = DM_FLAG_THICKBELLY
+ B.belly_fullscreen = "destination_tumby"
+ B.belly_fullscreen_color = "#02a802"
+ B.digest_brute = 2
+ B.digest_burn = 2
+ B.digest_oxy = 1
+ B.digestchance = 100
+ B.absorbchance = 0
+ B.escapechance = 10
+ B.selective_preference = DM_SELECT
+ B.escape_stun = 10
+
+/datum/category_item/catalogue/fauna/mantrap
+ name = "Extra-Realspace Flora - Mantrap"
+ desc = "Classification: Dionaea Humanis\
+
\
+ The mantrap is a rare carnivorous plant found in redgate locations. The main component of which is a pair of large fan-shaped leaves with serrated dagger like edges, which act as it's main predation mechanism. \
+ Despite its size, it is a patient predator that will lay in wait for multiple months before claiming a meal. Whilst it is able to rapidly digest creatures of significant sizes, its metabolism is slow and the nutrients it prey provides can sustain it for a long period of time."
+ value = CATALOGUER_REWARD_HARD
+
+/datum/ai_holder/simple_mob/passive/mantrap
+ vision_range = 1
+ wander = FALSE
+
+/mob/living/simple_mob/vore/mantrap/Crossed(var/atom/movable/AM) // Transplanting this from /mob/living/carbon/human/Crossed()
+ if(AM == src || AM.is_incorporeal()) // We're not going to run over ourselves or ghosts
+ return
+ if(isliving(AM))
+ var/mob/living/L = AM
+ if(L.devourable && L.allowmobvore && (src.vore_fullness < src.vore_capacity))
+ perform_the_nom(src,L,src,src.vore_selected,1)
+ return
+ else
+ return
+
+
+////////////////////////////PITCHER PLANT////////////////////////////////////////////////
+
+
+/mob/living/simple_mob/vore/pitcher
+ name = "Pitcher Plant"
+ desc = "This large pitcher plant looks big enough to fit an entire person, with a little stretching. Long tendrils rest at the entrance."
+ catalogue_data = list(/datum/category_item/catalogue/fauna/pitcher)
+ tt_desc = "Nepenthes Titanis"
+ icon = 'icons/mob/vore.dmi'
+ icon_dead = "pitcher-dead"
+ icon_living = "pitcher"
+ icon_state = "pitcher"
+ icon_rest = "pitcher"
+ faction = "plants"
+ movement_cooldown = 0
+ harm_intent_damage = 0
+ melee_damage_lower = 0
+ melee_damage_upper = 0
+ maxHealth = 100
+ attacktext = list("flinches at")
+ see_in_dark = 8
+ minbodytemp = 0
+ ai_holder_type = /datum/ai_holder/simple_mob/vore/pitcher
+
+ density = 0
+ anchored = 1
+
+ vore_bump_chance = 100
+ vore_digest_chance = 50
+ vore_escape_chance = 5
+ vore_pounce_chance = 0
+ vore_active = 1
+ vore_icons = 1
+ vore_icons = SA_ICON_LIVING | SA_ICON_REST
+ vore_capacity = 1
+ swallowTime = 1
+ vore_ignores_undigestable = TRUE
+ vore_default_mode = DM_SELECT
+ vore_pounce_maxhealth = 0
+ vore_bump_emote = "encloses on"
+
+ appendage_color = "#03a319"
+ base_attack_cooldown = 5 SECONDS
+ projectiletype = /obj/item/projectile/beam/appendage
+ projectilesound = 'sound/effects/slime_squish.ogg'
+
+/mob/living/simple_mob/vore/pitcher/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "stomach"
+ B.desc = "Walking a little too close to the pitcher plant, you trigger its trap mechanism and a tendril shoots out towards you. Wrapping around your body, you are rapidly dragged into the open mouth of the plant, stuffing your entire body into a fleshy, green stomach filled with a pool of some sort of tingling liquid. The lid of the plant slams down over the mouth, making it far more difficult to escape, all whilst that pool steadily seems to be filling up."
+ B.mode_flags = DM_FLAG_THICKBELLY
+ B.belly_fullscreen = "destination_tumby"
+ B.belly_fullscreen_color = "#02a802"
+ B.digest_brute = 1
+ B.digest_burn = 1
+ B.digest_oxy = 0
+ B.digestchance = 100
+ B.absorbchance = 0
+ B.escapechance = 10
+ B.selective_preference = DM_SELECT
+ B.escape_stun = 10
+
+/datum/category_item/catalogue/fauna/pitcher
+ name = "Extra-Realspace Flora - Titan Pitcher Plant"
+ desc = "Classification: Nepenthes Titanis\
+
\
+ The titan pitcher plant is a rare carnivorous plant found in redgate locations. Unlike typical pitfall type pitcher plants that we are familiar with in realspace, these variants are far more aggressive. \
+ When their defense mechanisms are triggered, by sensing vibrations through their extensive root systems, long tendrils emerge from the mouth of these plants to ensnare living creatures nearby. These creatures are dragged into the stomach-like bell shaped cavity of the plant and the rigid leaf closes as a lid. \
+ Despite the size of these plants, they are perfectly capable of trapping an adult human and should be treated with heavy caution. More typically, they predate on small mammals and reptiles in their local ecological environment."
+ value = CATALOGUER_REWARD_HARD
+
+/datum/ai_holder/simple_mob/vore/pitcher
+ vision_range = 3
+ wander = FALSE
+ retaliate = FALSE
+ pointblank = TRUE
+
+/*/mob/living/simple_mob/vore/pitcher/do_special_attack(atom/A)
+ . = TRUE
+ if(ckey)
+ return
+ tongue(A)
+
+/mob/living/simple_mob/vore/pitcher/proc/tongue(atom/A)
+ var/obj/item/projectile/P = new /obj/item/projectile/beam/appendage(get_turf(src))
+ src.visible_message("\The [src] launches a green appendage at \the [A]!")
+ playsound(src, "sound/effects/slime_squish.ogg", 50, 1)
+ P.launch_projectile(A, BP_TORSO, src)*/
+
+//NEVER MOVE!!!
+
+/datum/ai_holder/simple_mob/vore/pitcher/walk_to_destination()
+ return
+
+/datum/ai_holder/simple_mob/vore/pitcher/give_destination()
+ return
+
+/datum/ai_holder/simple_mob/vore/pitcher/walk_path()
+ return
+
+/datum/ai_holder/simple_mob/vore/pitcher/move_once()
+ return
+
+/datum/ai_holder/simple_mob/vore/pitcher/handle_wander_movement()
+ return
+
+/datum/ai_holder/simple_mob/vore/pitcher/walk_to_target()
+ return
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/scrubble.dm b/code/modules/mob/living/simple_mob/subtypes/vore/scrubble.dm
new file mode 100644
index 0000000000..38249b994c
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/scrubble.dm
@@ -0,0 +1,141 @@
+/mob/living/simple_mob/vore/scrubble
+ name = "Scrubble"
+ desc = "A small skittish animal with some features resembling rodents and foxes. Usually seen coated with beige and brown fur, the scrubble has four ears that pivot quickly, two long fluffy tails and dark red eyes."
+ catalogue_data = list(/datum/category_item/catalogue/fauna/scrubble)
+ tt_desc = "vuldentia"
+ icon = 'icons/mob/vore.dmi'
+ icon_dead = "scrubble-dead"
+ icon_living = "scrubble"
+ icon_state = "scrubble"
+ icon_rest = "scrubble-rest"
+ faction = "scrubble"
+ friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles")
+ response_help = "bumps"
+ response_disarm = "shoves"
+ response_harm = "attacks"
+ movement_cooldown = 0
+ harm_intent_damage = 2
+ melee_damage_lower = 1
+ melee_damage_upper = 4
+ maxHealth = 50
+ attacktext = list("bites")
+ see_in_dark = 8
+ minbodytemp = 0
+ ai_holder_type = /datum/ai_holder/simple_mob/hostile/scrubble
+ say_list_type = /datum/say_list/scrubble
+
+ vore_bump_chance = 25
+ vore_digest_chance = 50
+ vore_escape_chance = 5
+ vore_pounce_chance = 1000
+ vore_active = 1
+ vore_icons = 1
+ vore_icons = SA_ICON_LIVING | SA_ICON_REST
+ vore_capacity = 1
+ swallowTime = 50
+ vore_ignores_undigestable = TRUE
+ vore_default_mode = DM_DIGEST
+ vore_pounce_maxhealth = 1000
+ vore_bump_emote = "pounces on"
+
+/mob/living/simple_mob/vore/scrubble/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "stomach"
+ B.desc = "Despite the small size of the scrubble, it seems to have a lot of energy behind it. The critter dives atop you in a panic, it's maw quickly engulfing your head as it's paws flail scrabble against you, hot slobber slathering across your tightly trapped face. It takes a little repositioning to get itself in the right position, but soon the creature is gulping its way down your entire body. Somehow it manages to squeeze you completely into a gut that should rightly be far too small for anything but a mouse, bundling up your body into a tight ball as the walls around you clench in tightly to keep you nice and compact. The sounds of burbling and glorping echo through the intensely tight space as the stomach lining grinds in thick oozes against your skin, pressure so high that you can barely move a muscle."
+ B.mode_flags = DM_FLAG_THICKBELLY
+ B.belly_fullscreen = "yet_another_tumby"
+ B.digest_brute = 1
+ B.digest_burn = 1
+ B.digest_oxy = 0
+ B.digestchance = 100
+ B.absorbchance = 0
+ B.escapechance = 15
+ B.selective_preference = DM_DIGEST
+ B.escape_stun = 5
+
+/datum/say_list/scrubble
+ emote_hear = list("yips","squeaks","chirps")
+ emote_see = list("looks around frantically","sniffs at the air","wafts its tails","flickers its four ears")
+
+/datum/category_item/catalogue/fauna/scrubble
+ name = "Extra-Realspace Fauna - Scrubble"
+ desc = "Classification: Vuldentia\
+
\
+ The Scrubble is a small creature found in redgate locations that has properties resembling those of rodents and vulpines. \
+ Primarily a scavanger, the scrubble is known to eat all sorts of organic material, whether it's vegetable or meat, but generally does not hunt on its own. Largely defenseless against larger creature, the scrubble is certainly a prey species. \
+ Their geneneral behaviour supports this, as they will heavily avoid interaction with any other species that approach it, usually darting away rapidly and keeping a distance. However, they have been known to act defensively should they be completely cornered."
+ value = CATALOGUER_REWARD_HARD
+
+/mob/living/simple_mob/vore/scrubble/PounceTarget(var/mob/living/M, var/successrate = 100)
+ vore_pounce_cooldown = world.time + 1 SECONDS // don't attempt another pounce for a while
+ if(prob(successrate)) // pounce success!
+ M.Weaken(5)
+ M.visible_message("\The [src] pounces on \the [M]!!")
+ else // pounce misses!
+ M.visible_message("\The [src] attempts to pounce \the [M] but misses!!")
+ playsound(src, 'sound/weapons/punchmiss.ogg', 25, 1, -1)
+
+ if(will_eat(M) && (!M.canmove || vore_standing_too)) //if they're edible then eat them too
+ return EatTarget(M)
+ else
+ return //just leave them
+
+//AI
+
+/datum/ai_holder/simple_mob/hostile/scrubble
+ can_flee = TRUE
+ vision_range = 5 //Only react if you get close
+ can_flee = TRUE // If they're even allowed to flee.
+ flee_when_dying = TRUE // If they should flee when low on health.
+ dying_threshold = 1.1 // Flee at max health
+ base_wander_delay = 2
+
+/datum/ai_holder/simple_mob/hostile/scrubble/flee_from_target()
+ ai_log("flee_from_target() : Entering.", AI_LOG_DEBUG)
+
+ if(!target || !should_flee() || !can_attack(target)) // can_attack() is used since it checks the same things we would need to anyways.
+ ai_log("flee_from_target() : Lost target to flee from.", AI_LOG_INFO)
+ lose_target()
+ set_stance(STANCE_IDLE)
+ ai_log("flee_from_target() : Exiting.", AI_LOG_DEBUG)
+ return
+
+ var/mob/living/simple_mob/vore/H = holder
+ var/mob/living/L = target
+ var/distance = get_dist(holder, target)
+ if(distance <= 1)
+ if(L.devourable && L.allowmobvore && (H.vore_fullness < H.vore_capacity))
+ H.face_atom(L)
+ H.PounceTarget(L)
+ return
+
+ ai_log("flee_from_target() : Stepping away.", AI_LOG_TRACE)
+ step_away(holder, target, 7)
+ ai_log("flee_from_target() : Exiting.", AI_LOG_DEBUG)
+
+/datum/ai_holder/simple_mob/hostile/scrubble/find_target(list/possible_targets, has_targets_list)
+ if(!isanimal(holder)) //Only simplemobs have the vars we need
+ return ..()
+ var/list/L = list()
+ if(!has_targets_list)
+ possible_targets = list_targets()
+ var/list/valid_mobs = list()
+ for(var/mob/living/possible_target in possible_targets)
+ if(!can_attack(possible_target))
+ continue
+ L |= possible_target
+ if(!isliving(possible_target))
+ continue
+ if(vore_check(possible_target))
+ valid_mobs |= possible_target
+
+ var/new_target
+ if(valid_mobs.len)
+ new_target = pick(valid_mobs)
+ else if(hostile && L.len)
+ new_target = pick(L)
+ if(!new_target)
+ return null
+ give_target(new_target)
+ return new_target
\ No newline at end of file
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/sonadile.dm b/code/modules/mob/living/simple_mob/subtypes/vore/sonadile.dm
new file mode 100644
index 0000000000..30a37484de
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/sonadile.dm
@@ -0,0 +1,102 @@
+/mob/living/simple_mob/vore/sonadile
+ name = "Sonadile"
+ desc = "A tall, oddly proportioned bipedal reptile. Whilst its body is fairly large on its own, the incredibly long neck brings its height up to near 14 feet tall. Covered in green scales with a yellow underbelly, with a long thin tail, short legs and stubby arms. It has orange frills down its spine and the eyes are an odd grey colour, it doesn't appear to be able to see very well."
+ catalogue_data = list(/datum/category_item/catalogue/fauna/sonadile)
+ tt_desc = "Crocodylidae"
+ icon = 'icons/mob/vore64x64.dmi'
+ icon_dead = "sonadile-dead"
+ icon_living = "sonadile"
+ icon_state = "sonadile"
+ icon_rest = "sonadile"
+ faction = "sonadile"
+ old_x = -16
+ old_y = 0
+ default_pixel_x = -16
+ pixel_x = -16
+ pixel_y = 0
+ friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles")
+ response_help = "bumps"
+ response_disarm = "shoves"
+ response_harm = "attacks"
+ movement_cooldown = 0
+ harm_intent_damage = 7
+ melee_damage_lower = 3
+ melee_damage_upper = 10
+ maxHealth = 100
+ attacktext = list("bites")
+ see_in_dark = 8
+ minbodytemp = 0
+ ai_holder_type = /datum/ai_holder/simple_mob/say_aggro
+ say_list_type = /datum/say_list/sonadile
+
+ vore_bump_chance = 25
+ vore_digest_chance = 50
+ vore_escape_chance = 5
+ vore_pounce_chance = 1000
+ vore_active = 1
+ vore_icons = 1
+ vore_icons = SA_ICON_LIVING | SA_ICON_REST
+ vore_capacity = 1
+ swallowTime = 50
+ vore_ignores_undigestable = TRUE
+ vore_default_mode = DM_DIGEST
+ vore_pounce_maxhealth = 1000
+ vore_bump_emote = "pounces on"
+
+/mob/living/simple_mob/vore/sonadile/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "stomach"
+ B.desc = "The creature's huge maw drops down over your body, the long neck preventing it from barely having to shift its torso at all. The jaws quickly travel down you, slathering you in a drool as you're quickly stuffed through the flexible muscle of the throat. In a matter of seconds you are effortlessly lifted from the ground, your entire figure now reduced to a bulge within the neck of the beast, your feet soon vanishing into its mouth with a visceral gulp. The journey down is a long and slow one, the gullet squeezing you steadily along with heavy rippling contractions, the sonadile is quite content that you're heading in the right direction. With every inch, the world around you grows louder with the sound of a heartbeat and the gutteral grumbles of your upcoming destination. Before long you are squeezed down through a tight fleshy valve and deposited in the stomach of the reptile, walls immediately bearing down on you from every direction to ensure that you're tightly confined with little room to move. Hot, humid and slick with all manner of thick and thin liquids, this place isn't treating you any different from whatever else this animal likes to eat."
+ B.mode_flags = DM_FLAG_THICKBELLY
+ B.belly_fullscreen = "yet_another_tumby"
+ B.digest_brute = 2
+ B.digest_burn = 2
+ B.digest_oxy = 1
+ B.digestchance = 100
+ B.absorbchance = 0
+ B.escapechance = 5
+ B.selective_preference = DM_DIGEST
+ B.escape_stun = 5
+
+/datum/say_list/sonadile
+ emote_hear = list("warbles","roars","yawns")
+ emote_see = list("stumbles about clumsily","slowly pans its head around","extends and shakes its frills","lashes its tail against the ground")
+
+/datum/category_item/catalogue/fauna/sonadile
+ name = "Extra-Realspace Fauna - Sonadile"
+ desc = "Classification: Crocodylidae\
+
\
+ The Sonadile is named as such due to it's vague resemblence to crocodilian animals and its enhanced ability to hunt purely through sound. \
+ Frequently found in dark and damp spaces, the sonadile seems to have little problem moving about despite its unusual size and shape, and generally is seen walking on two legs. Relatively docile when left in the quiet, researchers should be warned that it is quick to attack those who speak out loud. \
+ Whilst not entirely blind, it appears to have difficulty discerning differences between shapes and movement, but once it hears something that it interprets as prey, it attempts to swallow the creature whole and alive, lashing its head forward on the massively long neck."
+ value = CATALOGUER_REWARD_HARD
+
+/mob/living/simple_mob/vore/sonadile/update_icon()
+ . = ..()
+ if(vore_active)
+ var/voremob_awake = FALSE
+ if(icon_state == icon_living)
+ voremob_awake = TRUE
+ update_fullness()
+ if(!vore_fullness)
+ update_transform()
+ return 0
+ else if((stat == CONSCIOUS) && (!icon_rest || !resting || !incapacitated(INCAPACITATION_DISABLED)) && (vore_icons & SA_ICON_LIVING))
+ icon_state = "[icon_living]-[vore_fullness]"
+ spawn(100)
+ if(vore_fullness)
+ icon_state = "[icon_living]-2"
+ update_transform()
+ else if(stat >= DEAD && (vore_icons & SA_ICON_DEAD))
+ icon_state = "[icon_dead]-[vore_fullness]"
+ else if(((stat == UNCONSCIOUS) || resting || incapacitated(INCAPACITATION_DISABLED) ) && icon_rest && (vore_icons & SA_ICON_REST))
+ icon_state = "[icon_rest]-[vore_fullness]"
+ spawn(100)
+ if(vore_fullness)
+ icon_state = "[icon_living]-2"
+ update_transform()
+ if(vore_eyes && voremob_awake) //Update eye layer if applicable.
+ remove_eyes()
+ add_eyes()
+ update_transform()
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/stalker.dm b/code/modules/mob/living/simple_mob/subtypes/vore/stalker.dm
new file mode 100644
index 0000000000..6e10ccdf60
--- /dev/null
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/stalker.dm
@@ -0,0 +1,277 @@
+/mob/living/simple_mob/vore/stalker
+ name = "Cave Stalker"
+ desc = "A strange slim creature that lurks in the dark. It's features could be described as a mix of feline and canine, but it's most notable alien property is the second set of forelegs. Additionally, it has a series of boney blue spikes running down it's spine, a similarly hard tip to it's tail and dark blue fangs hanging from it's snout."
+ catalogue_data = list(/datum/category_item/catalogue/fauna/stalker)
+ tt_desc = "Canidfelanis"
+ icon = 'icons/mob/vore64x32.dmi'
+ icon_dead = "stalker-dead"
+ icon_living = "stalker"
+ icon_state = "stalker"
+ icon_rest = "stalker-rest"
+ faction = "stalker"
+ old_x = -16
+ old_y = 0
+ default_pixel_x = -16
+ pixel_x = -16
+ pixel_y = 0
+ friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles")
+ response_help = "bumps"
+ response_disarm = "shoves"
+ response_harm = "attacks"
+ movement_cooldown = 0
+ harm_intent_damage = 7
+ melee_damage_lower = 3
+ melee_damage_upper = 10
+ maxHealth = 100
+ attacktext = list("bites")
+ see_in_dark = 8
+ minbodytemp = 0
+ ai_holder_type = /datum/ai_holder/simple_mob/vore/stalker
+ say_list_type = /datum/say_list/stalker
+
+ vore_bump_chance = 25
+ vore_digest_chance = 50
+ vore_escape_chance = 5
+ vore_pounce_chance = 1000
+ vore_active = 1
+ vore_icons = 1
+ vore_icons = SA_ICON_LIVING | SA_ICON_REST
+ vore_capacity = 1
+ swallowTime = 50
+ vore_ignores_undigestable = TRUE
+ vore_default_mode = DM_DIGEST
+ vore_pounce_maxhealth = 1000
+ vore_bump_emote = "pounces on"
+
+/mob/living/simple_mob/vore/stalker/init_vore()
+ ..()
+ var/obj/belly/B = vore_selected
+ B.name = "stomach"
+ B.desc = "The lithe creature spends only minimal time with you pinned beneath it, before it's jaws stretch wide ahead of your face. The slightly blue hued interior squelches tightly over your head as the stalker's teeth prod against you, threatening to become much more of a danger if you put up too much of a fight. However, the process is quick, your body is efficiently squeezed through that tight gullet, contractions dragging you effortlessly towards the creature's gut. The stomach swells and hangs beneath the animal, swaying like a hammock under the newfound weight. The walls wrap incredibly tightly around you, compressing you tightly into a small ball as it grinds caustic juices over you."
+ B.mode_flags = DM_FLAG_THICKBELLY
+ B.belly_fullscreen = "yet_another_tumby"
+ B.digest_brute = 2
+ B.digest_burn = 2
+ B.digest_oxy = 1
+ B.digestchance = 100
+ B.absorbchance = 0
+ B.escapechance = 5
+ B.selective_preference = DM_DIGEST
+ B.escape_stun = 5
+
+/datum/say_list/stalker
+ emote_hear = list("hisses","growls","chuffs")
+ emote_see = list("watches you carefully","scratches at the ground","whips it's tail","paces")
+
+/datum/category_item/catalogue/fauna/stalker
+ name = "Extra-Realspace Fauna - Cave Stalker"
+ desc = "Classification: Canidfelanis\
+
\
+ Cave Stalker's an unusual alien animal found at a number of redgate locations, suspected to have originated from locations other than those that they are found at. \
+ They are carnivorous and highly aggressive beasts that spend the majority of their time skulking in dark locations with long lines of sight, they're known to spend a lot of time stalking their prey to assess their vulnerability. \
+ Typically they will follow their prey from a distance, and when they are not paying attention, will rush in to tackle their meal. However, they're stealth hunters and are easily startled if spotted. They will not attack their prey head on unless physically provoked to defend themselves."
+ value = CATALOGUER_REWARD_HARD
+
+/mob/living/simple_mob/vore/stalker/PounceTarget(var/mob/living/M, var/successrate = 100)
+ vore_pounce_cooldown = world.time + 1 SECONDS // don't attempt another pounce for a while
+ if(prob(successrate)) // pounce success!
+ M.Weaken(5)
+ M.visible_message("\The [src] pounces on \the [M]!!")
+ else // pounce misses!
+ M.visible_message("\The [src] attempts to pounce \the [M] but misses!!")
+ playsound(src, 'sound/weapons/punchmiss.ogg', 25, 1, -1)
+
+ if(will_eat(M) && (!M.canmove || vore_standing_too)) //if they're edible then eat them too
+ return EatTarget(M)
+ else
+ return //just leave them
+
+//AI
+
+/datum/ai_holder/simple_mob/vore/stalker
+ can_flee = TRUE
+ vision_range = 15 //They rush you from off-screen, but easily countered if you are aware
+ var/watched = 0
+
+/datum/ai_holder/simple_mob/vore/stalker/proc/check_witness(list/possible_targets, has_targets_list)
+ if(!has_targets_list)
+ possible_targets = list_targets()
+
+ for(var/mob/living/L in possible_targets)
+ var/distance = get_dist(holder, L)
+ if(!check_attacker(L) && !L.stat && distance <= 9) //Stop approaching just off screen if they're looking in your direction
+ if((L.dir == 1 && holder.y >= L.y) || (L.dir == 2 && holder.y <= L.y) || (L.dir == 4 && holder.x >= L.x) || (L.dir == 8 && holder.x <= L.x)) //stop attacking if they look at you
+ set_stance(STANCE_IDLE)
+ if(!watched)
+ watched = 1
+ spawn(40) //run away if they keep staring
+ watched = 0
+ if((L.dir == 1 && holder.y >= L.y) || (L.dir == 2 && holder.y <= L.y) || (L.dir == 4 && holder.x >= L.x) || (L.dir == 8 && holder.x <= L.x) && distance <= 8)
+ if(!L.stat) //If the prey is weakened in any way, don't run
+ step_away(holder, L, 8) //Flee if they stare at you within normal view range
+ holder.face_atom(L)
+ return TRUE
+ return FALSE
+
+/datum/ai_holder/simple_mob/vore/stalker/find_target(list/possible_targets, has_targets_list)
+ if(!vore_hostile)
+ return ..()
+ if(!isanimal(holder)) //Only simplemobs have the vars we need
+ return ..()
+ var/mob/living/simple_mob/H = holder
+ if(H.vore_fullness >= H.vore_capacity) //Don't beat people up if we're full
+ return ..()
+ ai_log("find_target() : Entered.", AI_LOG_TRACE)
+
+ . = list()
+ if(!has_targets_list)
+ possible_targets = list_targets()
+ var/list/valid_mobs = list()
+ for(var/mob/living/possible_target in possible_targets)
+ if(!can_attack(possible_target))
+ continue
+ . |= possible_target
+ if(!isliving(possible_target))
+ continue
+ if(vore_check(possible_target))
+ valid_mobs |= possible_target
+
+ var/new_target
+ if(valid_mobs.len)
+ new_target = pick(valid_mobs)
+ else if(hostile)
+ new_target = pick(.)
+ if(!new_target)
+ return null
+ give_target(new_target)
+ return new_target
+
+/datum/ai_holder/simple_mob/vore/stalker/can_attack(atom/movable/the_target, var/vision_required = TRUE)
+ ai_log("can_attack() : Entering.", AI_LOG_TRACE)
+ if(!can_see_target(the_target) && vision_required)
+ return FALSE
+ if(!belly_attack)
+ if(isbelly(holder.loc))
+ return FALSE
+ if(check_witness())
+ return FALSE
+ if(isliving(the_target))
+ var/mob/living/L = the_target
+ if(ishuman(L) || issilicon(L))
+ if(L.key && !L.client) // SSD players get a pass
+ return FALSE
+ if(L.stat)
+ if(L.stat == DEAD && !handle_corpse) // Leave dead things alone
+ return FALSE
+ if(L.stat == UNCONSCIOUS) // Do we have mauling? Yes? Then maul people who are sleeping but not SSD
+ if(mauling)
+ return TRUE
+ //VOREStation Add Start
+ else if(unconscious_vore && L.allowmobvore)
+ var/mob/living/simple_mob/vore/eater = holder
+ if(eater.will_eat(L))
+ return TRUE
+ else
+ return FALSE
+ //VOREStation Add End
+ else
+ return FALSE
+// if(!check_attacker(L))
+// if((L.dir == 1 && holder.y >= L.y) || (L.dir == 2 && holder.y <= L.y) || (L.dir == 4 && holder.x >= L.x) || (L.dir == 8 && holder.x <= L.x)) //stop attacking if they look at you
+// set_stance(STANCE_IDLE)
+// spawn(40) //run away if they keep staring
+// if((L.dir == 1 && holder.y >= L.y) || (L.dir == 2 && holder.y <= L.y) || (L.dir == 4 && holder.x >= L.x) || (L.dir == 8 && holder.x <= L.x))
+// if(!L.stat) //If the prey is weakened in any way, don't run
+// step_away(holder, L, 8)
+// holder.face_atom(L)
+// return FALSE
+ //VOREStation add start
+ else if(forgive_resting && !isbelly(holder.loc)) //Doing it this way so we only think about the other conditions if the var is actually set
+ if((holder.health == holder.maxHealth) && !hostile && (L.resting || L.weakened || L.stunned)) //If our health is full, no one is fighting us, we can forgive
+ var/mob/living/simple_mob/vore/eater = holder
+ if(!eater.will_eat(L)) //We forgive people we can eat by eating them
+ set_stance(STANCE_IDLE)
+ return FALSE //Forgiven
+ //VOREStation add end
+ if(holder.IIsAlly(L))
+ return FALSE
+ return TRUE
+
+ if(istype(the_target, /obj/mecha))
+ var/obj/mecha/M = the_target
+ if(M.occupant)
+ return can_attack(M.occupant)
+ return destructive // Empty mechs are 'neutral'.
+
+ if(istype(the_target, /obj/machinery/porta_turret))
+ var/obj/machinery/porta_turret/P = the_target
+ if(P.stat & BROKEN)
+ return FALSE // Already dead.
+ if(P.faction == holder.faction)
+ return FALSE // Don't shoot allied turrets.
+ if(!P.raised && !P.raising)
+ return FALSE // Turrets won't get hurt if they're still in their cover.
+ return TRUE
+
+ if(istype(the_target, /obj/structure/blob)) // Blob mobs are always blob faction, but the blob can anger other things.
+ var/obj/structure/blob/Blob = the_target
+ if(holder.faction == Blob.faction)
+ return FALSE
+
+ return TRUE
+
+/datum/ai_holder/simple_mob/vore/stalker/engage_target()
+ ai_log("engage_target() : Entering.", AI_LOG_DEBUG)
+
+ // Can we still see them?
+ if(!target || !can_attack(target))
+ ai_log("engage_target() : Lost sight of target.", AI_LOG_TRACE)
+ if(lose_target()) // We lost them (returns TRUE if we found something else to do)
+ ai_log("engage_target() : Pursuing other options (last seen, or a new target).", AI_LOG_TRACE)
+ return
+
+ var/distance = get_dist(holder, target)
+ ai_log("engage_target() : Distance to target ([target]) is [distance].", AI_LOG_TRACE)
+ holder.face_atom(target)
+ last_conflict_time = world.time
+
+ // Do a 'special' attack, if one is allowed.
+// if(prob(special_attack_prob) && (distance >= special_attack_min_range) && (distance <= special_attack_max_range))
+ if(holder.ICheckSpecialAttack(target))
+ ai_log("engage_target() : Attempting a special attack.", AI_LOG_TRACE)
+ on_engagement(target)
+ if(special_attack(target)) // If this fails, then we try a regular melee/ranged attack.
+ ai_log("engage_target() : Successful special attack. Exiting.", AI_LOG_DEBUG)
+ return
+
+ // Stab them.
+ else if(distance <= 1 && !pointblank)
+ ai_log("engage_target() : Attempting a melee attack.", AI_LOG_TRACE)
+ on_engagement(target)
+ melee_attack(target)
+
+ else if(distance <= 1 && !holder.ICheckRangedAttack(target)) // Doesn't have projectile, but is pointblank
+ ai_log("engage_target() : Attempting a melee attack.", AI_LOG_TRACE)
+ on_engagement(target)
+ melee_attack(target)
+
+ // Shoot them.
+ else if(holder.ICheckRangedAttack(target) && (distance <= max_range(target)) )
+ on_engagement(target)
+ if(firing_lanes && !test_projectile_safety(target))
+ // Nudge them a bit, maybe they can shoot next time.
+ var/turf/T = get_step(holder, pick(cardinal))
+ if(T)
+ holder.IMove(T) // IMove() will respect movement cooldown.
+ holder.face_atom(target)
+ ai_log("engage_target() : Could not safely fire at target. Exiting.", AI_LOG_DEBUG)
+ return
+
+ ai_log("engage_target() : Attempting a ranged attack.", AI_LOG_TRACE)
+ ranged_attack(target)
+
+ // Run after them.
+ else if(!stand_ground)
+ ai_log("engage_target() : Target ([target]) too far away. Exiting.", AI_LOG_DEBUG)
+ set_stance(STANCE_APPROACH)
+
diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi
index 6c14f7e1ac..2aabf0438b 100644
Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ
diff --git a/icons/mob/vore64x32.dmi b/icons/mob/vore64x32.dmi
index 93115c62cc..a530a26d00 100644
Binary files a/icons/mob/vore64x32.dmi and b/icons/mob/vore64x32.dmi differ
diff --git a/icons/mob/vore64x64.dmi b/icons/mob/vore64x64.dmi
index 40bb47dc19..0c7458499b 100644
Binary files a/icons/mob/vore64x64.dmi and b/icons/mob/vore64x64.dmi differ
diff --git a/icons/mob/vore_raptor.dmi b/icons/mob/vore_raptor.dmi
index 14f2c2a46b..e0a530943f 100644
Binary files a/icons/mob/vore_raptor.dmi and b/icons/mob/vore_raptor.dmi differ
diff --git a/icons/obj/power_breaker.dmi b/icons/obj/power_breaker.dmi
new file mode 100644
index 0000000000..8ab13ceaca
Binary files /dev/null and b/icons/obj/power_breaker.dmi differ
diff --git a/maps/groundbase/groundbase_defines.dm b/maps/groundbase/groundbase_defines.dm
index b9b7ea5499..219fc11c6c 100644
--- a/maps/groundbase/groundbase_defines.dm
+++ b/maps/groundbase/groundbase_defines.dm
@@ -223,7 +223,8 @@
list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"),
list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town"),
list("Redgate - Laserdome"),
- list("Redgate - Cascading Falls")
+ list("Redgate - Cascading Falls"),
+ list("Redgate - Jungle Underground", "Redgate - Jungle")
)
lateload_gb_north = list(
diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm
index 4dd7e1087a..5ad2bc1d07 100644
--- a/maps/offmap_vr/common_offmaps.dm
+++ b/maps/offmap_vr/common_offmaps.dm
@@ -337,6 +337,19 @@
desc = "A world made up almost entirely of water, sprinkled with obscure marble structures."
mappath = 'maps/redgate/falls/falls.dmm'
+/datum/map_template/common_lateload/redgate/jungle
+ name = "Redgate - Jungle"
+ desc = "A fantasy town full of low tech stuff."
+ mappath = 'maps/redgate/jungle.dmm'
+
+/datum/map_template/common_lateload/redgate/jungle_underground
+ name = "Redgate - Jungle Underground"
+ desc = "A fantasy dungeon with lots of monsters and loot."
+ mappath = 'maps/redgate/jungle_underground.dmm'
+
+/obj/effect/landmark/map_data/jungle
+ height = 2
+
//////////////////////////////////////////////////////////////////////////////////////
// Admin-use z-levels for loading whenever an admin feels like
#if AWAY_MISSION_TEST
diff --git a/maps/redgate/jungle.dmm b/maps/redgate/jungle.dmm
new file mode 100644
index 0000000000..2394cdc81c
--- /dev/null
+++ b/maps/redgate/jungle.dmm
@@ -0,0 +1,24208 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ac" = (
+/obj/structure/bed/bath,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"af" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"ak" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/log2,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"an" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/under/tribalwear/common1,
+/obj/item/clothing/under/tribalwear/common2,
+/obj/item/clothing/shoes/footwraps,
+/obj/item/clothing/gloves/fluff/morsleeves,
+/obj/random/potion_base,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"as" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ax" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/effect/decal/godray,
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"aB" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/obj/fiftyspawner/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"aC" = (
+/obj/structure/closet/walllocker/wooden/south,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/kahlua,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/kahlua,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/kahlua,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/kahlua,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/kahlua,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/specialwhiskey,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/specialwhiskey,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/specialwhiskey,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/specialwhiskey,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"aE" = (
+/obj/item/weapon/reagent_containers/food/snacks/packaged/meatration,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"aM" = (
+/obj/structure/bed/double/padded,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"aN" = (
+/obj/random/potion_ingredient,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"aQ" = (
+/obj/structure/flora/lily2,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"aV" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"aX" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/fruitspawner/pineapple,
+/obj/fruitspawner/pineapple,
+/obj/fruitspawner/pineapple,
+/obj/fruitspawner/pineapple,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"bf" = (
+/obj/random/pouch,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"bi" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"bk" = (
+/obj/machinery/microwave/cookingpot,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"bn" = (
+/obj/structure/bed/chair/bay/comfy/lime{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"bs" = (
+/obj/effect/floor_decal/atoll/border{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/pwine,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"bD" = (
+/obj/fiftyspawner/log,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"bO" = (
+/obj/structure/closet/crate/chest,
+/obj/item/clothing/under/dress/sundress_white,
+/obj/random/fantasy_item/better,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"bR" = (
+/obj/random/bluespace,
+/obj/structure/table/alien,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"bT" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"bU" = (
+/obj/machinery/atmospherics/unary/engine,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"bV" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/rocks2,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"bY" = (
+/obj/machinery/microwave/cookingpot,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"ch" = (
+/obj/structure/simple_door/gold{
+ lock_id = "gold";
+ locked = 1
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"cj" = (
+/obj/structure/table/gold,
+/obj/item/glass_jar,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"cq" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/reagent_containers/food/snacks/flatbread,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread,
+/obj/item/weapon/reagent_containers/food/snacks/berrymuffin,
+/obj/item/weapon/reagent_containers/food/snacks/berrymuffin,
+/obj/item/weapon/reagent_containers/food/snacks/berrymuffin,
+/obj/item/weapon/reagent_containers/food/snacks/berrymuffin,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/reagent_containers/food/snacks/sausage,
+/obj/item/weapon/material/knife,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ct" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"cv" = (
+/obj/structure/simple_door/silver{
+ lock_id = "silver";
+ locked = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"cy" = (
+/obj/structure/table/gold,
+/obj/random/potion,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"cA" = (
+/obj/structure/closet/crate/chest,
+/obj/item/weapon/simple_key/dungeon{
+ color = "#06362e";
+ key_id = "silver";
+ name = "silver key"
+ },
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"cB" = (
+/obj/effect/decal/godray{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/brflowers{
+ name = "peony flowers"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"cM" = (
+/mob/living/simple_mob/vore/rabbit/white{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ vore_bump_chance = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"cU" = (
+/obj/structure/closet/crate/chest,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/potion_material/golden_scale,
+/obj/item/weapon/potion_material/golden_scale,
+/obj/item/seeds/goldappleseed,
+/obj/item/weapon/potion_material/golden_grapes,
+/obj/item/clothing/under/dress/golddress,
+/obj/item/clothing/under/dress/goldwrap,
+/obj/item/clothing/accessory/bracelet/material/gold,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"cW" = (
+/obj/item/weapon/bluespace_crystal,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"cX" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/obj/item/clothing/ears/earring/dangle/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"cY" = (
+/obj/structure/closet/walllocker/medical/south,
+/obj/machinery/light/floortube,
+/obj/random/maintenance/medical,
+/obj/random/medical/pillbottle,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"dd" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"df" = (
+/obj/fiftyspawner/log,
+/obj/item/weapon/storage/box/matches,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"di" = (
+/obj/structure/closet/grave/dirthole,
+/obj/random/plushie,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"dl" = (
+/turf/simulated/floor/water/deep{
+ outdoors = -1
+ },
+/area/redgate/jungle/eastcaves)
+"dp" = (
+/obj/structure/flora/tree/jungle{
+ icon_scale_x = 2;
+ icon_scale_y = 2;
+ max_x_scale = 2;
+ max_y_scale = 2;
+ min_x_scale = 1.9;
+ min_y_scale = 1.9
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"dz" = (
+/obj/effect/floor_decal/milspec/color/purple,
+/obj/item/weapon/potion_material/solid_mist,
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"dB" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"dC" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/red,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"dJ" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"dK" = (
+/obj/structure/closet/walllocker/wooden/west,
+/obj/item/stack/medical/crude_pack,
+/obj/item/stack/medical/crude_pack,
+/obj/item/stack/medical/crude_pack,
+/obj/item/stack/medical/ointment/simple,
+/obj/item/stack/medical/ointment/simple,
+/obj/item/stack/medical/ointment/simple,
+/obj/item/stack/medical/splint/ghetto,
+/obj/item/stack/medical/splint/ghetto,
+/obj/item/stack/medical/splint/ghetto,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"dM" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/toy/figure/prisoner,
+/obj/random/cash/huge,
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"dP" = (
+/obj/structure/bed/bath,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"dS" = (
+/obj/structure/prop/statue/pillar,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"dT" = (
+/turf/simulated/floor/outdoors/newdirt_nograss,
+/area/redgate/jungle/aboveground)
+"ec" = (
+/obj/structure/table/woodentable,
+/obj/random/fantasy_item,
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"ef" = (
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ek" = (
+/obj/structure/flora/log2,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"es" = (
+/obj/fiftyspawner/log,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"ez" = (
+/obj/structure/prop/rock/water,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"eA" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"eK" = (
+/obj/item/weapon/picnic_blankets_carried,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"eT" = (
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "crashedpod";
+ pixel_x = -27;
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/redgate/jungle/aboveground)
+"eU" = (
+/obj/structure/closet/crate/chest,
+/obj/item/weapon/reagent_containers/food/snacks/egg/purple,
+/obj/item/weapon/reagent_containers/food/snacks/egg/purple,
+/obj/item/weapon/reagent_containers/food/snacks/egg/purple,
+/obj/item/weapon/reagent_containers/food/snacks/egg/purple,
+/obj/item/weapon/reagent_containers/food/snacks/egg/purple,
+/obj/item/weapon/reagent_containers/glass/paint/purple,
+/obj/item/weapon/reagent_containers/food/snacks/grub_purple,
+/obj/item/weapon/reagent_containers/food/snacks/grub_purple,
+/obj/item/weapon/reagent_containers/food/snacks/grub_purple,
+/obj/item/weapon/pen/crayon/purple,
+/obj/item/toy/plushie/therapy/purple,
+/obj/item/clothing/under/cheongsam/purple,
+/obj/item/clothing/shoes/flats/purple,
+/obj/effect/floor_decal/milspec/color/purple,
+/obj/item/slime_extract/purple,
+/obj/random/potion,
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"eY" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest{
+ icon_scale_x = 2;
+ icon_scale_y = 2
+ },
+/mob/living/simple_mob/vore/bigdragon/friendly,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"fb" = (
+/obj/structure/closet/walllocker/wooden/east,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/random/potion_base,
+/obj/item/weapon/potion_base/alkahest,
+/obj/item/weapon/potion_base/aqua_regia,
+/obj/item/weapon/potion_base/ichor,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"fg" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"fi" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"fj" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"fm" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/obj/structure/closet/walllocker/wooden/west,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/storage/fancy/egg_box,
+/obj/item/weapon/storage/fancy/egg_box,
+/obj/item/weapon/storage/fancy/egg_box,
+/obj/item/weapon/storage/fancy/egg_box,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"fo" = (
+/obj/structure/closet/crate/chest,
+/obj/random/fantasy_item,
+/obj/random/fantasy_item,
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"fC" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"fK" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/fishing_junk,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/item/weapon/reagent_containers/food/snacks/worm,
+/obj/random/potion_base,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"fS" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"fT" = (
+/obj/effect/spider/stickyweb,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"ga" = (
+/obj/structure/reagent_dispensers/beerkeg/wine,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"gj" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"gk" = (
+/obj/structure/flora/ausbushes,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"gl" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/fruitspawner/towercap,
+/obj/fruitspawner/towercap,
+/obj/fruitspawner/towercap,
+/obj/fruitspawner/telriis,
+/obj/fruitspawner/telriis,
+/obj/fruitspawner/telriis,
+/obj/fruitspawner/telriis,
+/obj/fruitspawner/plumphelmet,
+/obj/fruitspawner/plumphelmet,
+/obj/fruitspawner/plumphelmet,
+/obj/fruitspawner/plumphelmet,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"gm" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/obj/item/weapon/bone/skull/tajaran,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"gt" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/obj/item/clothing/shoes/boots/jackboots/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"gE" = (
+/obj/structure/sign/scenery/overlay/vine/bottom,
+/turf/simulated/wall/wood,
+/area/redgate/jungle/aboveground)
+"gO" = (
+/obj/structure/prop/statue/pillar/dark,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"gP" = (
+/obj/structure/prop/rock,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"gR" = (
+/obj/machinery/porta_turret/alien/destroyed{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"gS" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"gX" = (
+/turf/simulated/open,
+/area/redgate/jungle/westcaves)
+"hb" = (
+/mob/living/simple_mob/vore/pakkun/purple,
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"hg" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"hh" = (
+/turf/simulated/floor/wood/broken,
+/area/redgate/jungle/westcaves)
+"hi" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/head/fishing,
+/obj/item/clothing/head/boaterhat,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"hm" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alembic,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"hn" = (
+/obj/effect/decal/mecha_wreckage/gorilla,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/redgate/jungle/temple)
+"hp" = (
+/mob/living/simple_mob/vore/pitcher,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"hq" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_rod/modern/strong,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"hA" = (
+/obj/structure/table/gold,
+/obj/random/potion_base,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"hG" = (
+/turf/simulated/floor/outdoors/rocks,
+/area/redgate/jungle/aboveground)
+"hK" = (
+/turf/simulated/shuttle/floor/red,
+/area/redgate/jungle/aboveground)
+"hM" = (
+/obj/random/potion_ingredient,
+/turf/simulated/floor/flesh,
+/area/redgate/jungle/temple)
+"hR" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/potion_ingredient,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/fantasy_item,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"hT" = (
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"hV" = (
+/mob/living/simple_mob/vore/cookiegirl,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"ib" = (
+/obj/structure/sign/scenery/overlay/vine/top{
+ pixel_y = -9
+ },
+/turf/simulated/shuttle/wall,
+/area/redgate/jungle/westcaves)
+"ik" = (
+/mob/living/simple_mob/vore/demon{
+ ai_holder_type = /datum/ai_holder/simple_mob/vore;
+ harm_intent_damage = 8;
+ health = 300;
+ melee_damage_lower = 5;
+ melee_damage_upper = 2;
+ vore_pounce_chance = 50
+ },
+/turf/simulated/floor/gorefloor,
+/area/redgate/jungle/temple)
+"il" = (
+/obj/machinery/light/small/torch,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"is" = (
+/obj/structure/closet/crate/chest,
+/obj/random/fantasy_item,
+/obj/random/potion,
+/obj/item/stack/material/diamond,
+/obj/item/stack/material/diamond,
+/obj/item/stack/material/diamond,
+/obj/item/stack/material/diamond,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"iG" = (
+/obj/item/weapon/ore/phoron,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"iI" = (
+/obj/item/weapon/pickaxe/gold,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"iJ" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"iK" = (
+/obj/effect/floor_decal/atoll/border{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"iN" = (
+/obj/structure/girder,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/westcaves)
+"iP" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"iR" = (
+/obj/structure/bed/double/weaversilk_nest{
+ color = "#009914"
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"iS" = (
+/obj/random/potion_base,
+/turf/simulated/floor/water/digestive_enzymes,
+/area/redgate/jungle/temple)
+"iT" = (
+/obj/structure/salvageable/console{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"iW" = (
+/turf/simulated/wall/solidrock,
+/area/redgate/jungle/southcaves)
+"jd" = (
+/obj/item/weapon/bone/skull,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"ji" = (
+/obj/machinery/recharge_station/ghost_pod_recharger,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"jk" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"jm" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"jy" = (
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"jG" = (
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"jN" = (
+/obj/structure/bed/chair/shuttle_padded,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"jQ" = (
+/obj/item/weapon/reagent_containers/glass/bucket/wood,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"jW" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/aboveground)
+"jY" = (
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"kc" = (
+/mob/living/simple_mob/vore/peasant,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"kd" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"ke" = (
+/turf/simulated/wall/solidrock,
+/area/redgate/jungle/westcaves)
+"kh" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"kj" = (
+/obj/structure/window/basic/full,
+/obj/structure/barricade/planks,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"ko" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ku" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/grey,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"kx" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/fruitspawner/potato,
+/obj/fruitspawner/potato,
+/obj/fruitspawner/potato,
+/obj/fruitspawner/potato,
+/obj/fruitspawner/potato,
+/obj/fruitspawner/potato,
+/obj/fruitspawner/potato,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"kA" = (
+/turf/simulated/open,
+/area/redgate/jungle/aboveground)
+"kF" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"kO" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"kV" = (
+/obj/structure/closet/crate/chest,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/instrument,
+/obj/random/potion_base,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"ld" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/reddouble,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"ll" = (
+/obj/structure/bonfire,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"lt" = (
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/southcaves)
+"lu" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ly" = (
+/turf/simulated/wall/concrete,
+/area/redgate/jungle/southcaves)
+"lz" = (
+/obj/structure/table/rack/wood,
+/obj/item/clothing/shoes/knight/black,
+/obj/item/clothing/gloves/combat/knight/brown,
+/obj/item/clothing/suit/armor/combat/imperial,
+/obj/item/clothing/head/helmet/gladiator,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"lA" = (
+/obj/structure/reagent_dispensers/watertank/barrel,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"lB" = (
+/obj/structure/prop/statue/lion,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/temple)
+"lC" = (
+/obj/structure/closet/tent/B,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"lI" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"lM" = (
+/turf/simulated/wall/tgmc/chigusa/deco1,
+/area/redgate/jungle/temple)
+"lN" = (
+/mob/living/simple_mob/animal/space/bear/brown{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ vore_bump_chance = 5;
+ vore_bump_emote = "lunges at";
+ vore_pounce_chance = 50
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"lO" = (
+/obj/item/instrument/violin/golden,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"lT" = (
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"lV" = (
+/turf/simulated/shuttle/wall/dark,
+/area/redgate/jungle/aboveground)
+"lW" = (
+/turf/simulated/wall/diamond,
+/area/redgate/jungle/temple)
+"mm" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"mv" = (
+/obj/structure/closet/coffin,
+/obj/random/potion,
+/obj/item/clothing/mask/gas/plaguedoctor/gold,
+/obj/item/clothing/head/plaguedoctorhat/gold,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"my" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/fantasy_item,
+/obj/random/fantasy_item,
+/obj/item/weapon/gun/launcher/crossbow/bow,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"mz" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/sword/foam,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"mH" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/brown,
+/obj/item/weapon/bedsheet/pillow/white,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"mI" = (
+/obj/item/weapon/melee/shock_maul,
+/obj/structure/table/alien/blue,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"mJ" = (
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/aboveground)
+"mK" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"mT" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/knife/machete/hatchet/stone,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"mX" = (
+/obj/structure/bonfire,
+/obj/structure/railing/overhang/waterless{
+ dir = 4;
+ icon_state = "wbronze_railing0"
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"nb" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"nc" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"ne" = (
+/obj/structure/curtain/open,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"nk" = (
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"nl" = (
+/obj/structure/bed/pillowpile,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"np" = (
+/obj/effect/fake_sun/warm,
+/obj/effect/landmark/map_data/jungle,
+/turf/simulated/wall/tgmc/chigusa,
+/area/redgate/jungle/temple)
+"nr" = (
+/obj/structure/prop/statue/stump_plaque{
+ desc = "A wooden stump adorned with a little plaque. It reads: In honour of all the brave prey that sag our guts."
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"nH" = (
+/obj/structure/flora/sif/subterranean,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"nL" = (
+/obj/structure/bed/chair/sofa/bench/marble,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/aboveground)
+"nP" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/sliceable/chocolatecake,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"nR" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest{
+ icon_scale_x = 2;
+ icon_scale_y = 2
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"nX" = (
+/obj/machinery/appliance/cooker/oven/yeoldoven,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"od" = (
+/obj/structure/table/woodentable,
+/obj/random/potion,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"oe" = (
+/obj/structure/simple_door/silver{
+ lock_id = "silver";
+ locked = 1
+ },
+/obj/effect/floor_decal/milspec/color/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"og" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/potion_base,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"ok" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"oo" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/storage/box/matches,
+/obj/item/device/slow_sizegun/magic,
+/obj/random/fantasy_item,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"ou" = (
+/obj/structure/prop/rock/crystal,
+/turf/simulated/floor/outdoors/ice{
+ outdoors = -1
+ },
+/area/redgate/jungle/temple)
+"oz" = (
+/obj/machinery/light/floortube{
+ pixel_y = -7
+ },
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"oC" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"oE" = (
+/mob/living/simple_mob/animal/passive/fish/pike,
+/turf/simulated/floor/water/deep/ocean/diving,
+/area/redgate/jungle/aboveground)
+"oL" = (
+/obj/effect/floor_decal/atoll/border,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"oN" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"oX" = (
+/obj/structure/prop/rock{
+ icon_scale_x = 1.5;
+ icon_scale_y = 1.5
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"oZ" = (
+/obj/structure/sign/scenery/overlay/vine{
+ pixel_y = -6
+ },
+/turf/simulated/shuttle/wall,
+/area/redgate/jungle/westcaves)
+"pe" = (
+/obj/structure/reagent_dispensers/watertank/barrel,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"pf" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/log1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"pg" = (
+/obj/structure/table/woodentable,
+/obj/fruitspawner/destroyingangel,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"pl" = (
+/obj/structure/table/woodentable,
+/obj/random/potion,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"pq" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/primitive,
+/obj/item/clothing/shoes/primitive,
+/obj/item/weapon/material/knife/stone/bone,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"pt" = (
+/obj/fruitspawner/glowshroom,
+/obj/fruitspawner/glowshroom,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"py" = (
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"pB" = (
+/obj/structure/sign/flag/blank{
+ pixel_y = 6
+ },
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"pF" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"pL" = (
+/turf/simulated/wall/tgmc/chigusa,
+/area/redgate/jungle/temple)
+"pN" = (
+/mob/living/simple_mob/vore/aggressive/dragon/space,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/southcaves)
+"pQ" = (
+/turf/simulated/wall/silvergold,
+/area/redgate/jungle/temple)
+"pR" = (
+/obj/machinery/telecomms/relay/preset/station,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"pT" = (
+/mob/living/simple_mob/vore/raptor/yellow,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"pU" = (
+/obj/random/tool/alien,
+/obj/item/weapon/aliencoin/phoron,
+/obj/item/trash/meatration,
+/obj/item/trash/meatration,
+/obj/item/trash/meatration,
+/obj/item/trash/meatration,
+/obj/random/potion_base,
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"pX" = (
+/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"pY" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/mob/living/simple_mob/animal/passive/bird/parrot/pink_cockatoo,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"pZ" = (
+/obj/structure/closet/alien,
+/obj/machinery/status_display{
+ pixel_y = 31
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/engineering,
+/obj/random/tool/alien,
+/obj/random/powercell,
+/obj/random/powercell/device,
+/obj/random/bluespace,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"qc" = (
+/obj/structure/grille,
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/simulated/floor/plating,
+/area/redgate/jungle/aboveground)
+"qe" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"qi" = (
+/obj/structure/grille/broken,
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/simulated/floor/plating,
+/area/redgate/jungle/aboveground)
+"qj" = (
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"qk" = (
+/obj/structure/sign/scenery/overlay/vine/top,
+/turf/simulated/wall/wood,
+/area/redgate/jungle/aboveground)
+"qo" = (
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"qr" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"qt" = (
+/obj/structure/table/darkglass,
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/obj/random/fantasy_item/better,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"qB" = (
+/obj/structure/simple_door/diamond{
+ lock_id = "diamond";
+ locked = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"qC" = (
+/obj/structure/sign/flag/blank{
+ pixel_y = 6
+ },
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"qD" = (
+/obj/machinery/porta_turret/alien/destroyed{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"qJ" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"qK" = (
+/obj/effect/decal/cleanable/spiderling_remains,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"qL" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"qO" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"qS" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/random/potion,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"qT" = (
+/obj/structure/salvageable/server,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"qU" = (
+/obj/item/weapon/bone,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"qV" = (
+/obj/structure/bed/chair/shuttle_padded{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"qZ" = (
+/obj/structure/prop/statue/pillar,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/aboveground)
+"ra" = (
+/obj/item/weapon/reagent_containers/food/drinks/golden_cup,
+/obj/structure/sign/goldenplaque{
+ desc = "Surprisingly written in galcom, the enscryption reads: The phoron room key is stored in the sealed room closest to the lava.";
+ name = "gold engraving";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"rb" = (
+/turf/simulated/wall/golddiamond,
+/area/redgate/jungle/temple)
+"rd" = (
+/obj/structure/flora/ausbushes/brflowers{
+ name = "peony flowers"
+ },
+/obj/item/clothing/head/pin/flower/pink,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"re" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"rh" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"rl" = (
+/mob/living/simple_mob/vore/squirrel/big,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"rr" = (
+/obj/structure/closet/coffin,
+/obj/item/clothing/suit/skeleton,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"rs" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"rA" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/signpostwood{
+ desc = "Pred only! Hungry jungle lamia looking for snacks from space! I'm primarily looking for unwilling scenes with digestion but also open to do more willing/endo scenes if nothing else arises.";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"rD" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"rI" = (
+/turf/simulated/floor/gorefloor2,
+/area/redgate/jungle/temple)
+"rJ" = (
+/obj/structure/table/alien/blue,
+/obj/item/weapon/pickaxe/diamonddrill,
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/temple)
+"rL" = (
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"rY" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/accessory/tie/navy,
+/obj/item/clothing/accessory/tie/red,
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"rZ" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/instrument/musicalmoth,
+/obj/item/weapon/flame/lighter/zippo/royal,
+/obj/random/fantasy_item,
+/obj/random/potion_base,
+/obj/random/plushielarge,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"sc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/shuttle/wall,
+/area/redgate/jungle/westcaves)
+"sh" = (
+/obj/structure/salvageable/shuttle_console,
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"sm" = (
+/obj/structure/salvageable/shuttle_console,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"sn" = (
+/obj/structure/signpostwood{
+ desc = "Beware: Trespassers will be eaten!"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"sH" = (
+/turf/simulated/floor/water{
+ outdoors = -1
+ },
+/area/redgate/jungle/eastcaves)
+"sM" = (
+/obj/machinery/door/airlock/angled_bay/hazard{
+ name = "fire exit"
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"sR" = (
+/obj/structure/table/woodentable,
+/obj/random/potion_base,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"sT" = (
+/obj/structure/prop/blackbox,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"sU" = (
+/obj/item/weapon/aliencoin/phoron,
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/temple)
+"sX" = (
+/obj/structure/bed/chair/bay/chair/padded/purple{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"tb" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ti" = (
+/obj/structure/closet/coffin,
+/obj/item/weapon/bone,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"tj" = (
+/obj/item/weapon/material/shard/titaniumglass,
+/obj/structure/bed/chair/bay/chair/padded/purple{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"tk" = (
+/obj/structure/closet/crate/nanotrasen,
+/obj/item/device/gps/explorer,
+/obj/random/bluespace,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"tr" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"tB" = (
+/obj/effect/floor_decal/atoll/border/invert{
+ dir = 1
+ },
+/mob/living/simple_mob/vore/peasant,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"tC" = (
+/obj/random/material/precious,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"tF" = (
+/obj/random/material/precious,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"tG" = (
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"tS" = (
+/mob/living/simple_mob/vore/succubus,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"ue" = (
+/turf/simulated/wall/tgmc/chigusa{
+ can_open = 1
+ },
+/area/redgate/jungle/temple)
+"uf" = (
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"ug" = (
+/obj/machinery/vr_sleeper/alien,
+/turf/simulated/floor/gorefloor,
+/area/redgate/jungle/temple)
+"ui" = (
+/obj/structure/table/alien/blue,
+/obj/random/bluespace,
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/temple)
+"ul" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/head/pelt,
+/obj/item/clothing/head/pelt/wolfpelt,
+/obj/item/clothing/head/pelt/tigerpelt,
+/obj/random/multiple/underdark/treasure,
+/obj/random/multiple/underdark/treasure,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"um" = (
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/temple)
+"un" = (
+/obj/structure/curtain/open,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"uw" = (
+/mob/living/simple_mob/shadekin/yellow/retaliate/dark,
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/southcaves)
+"uz" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/floor/wood/broken,
+/area/redgate/jungle/westcaves)
+"uL" = (
+/obj/item/stack/material/iron,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"uM" = (
+/obj/structure/closet/crate/chest,
+/obj/item/weapon/simple_key/dungeon{
+ color = "#fff700";
+ key_id = "gold";
+ name = "gold key"
+ },
+/obj/item/weapon/spellbook/oneuse/knock,
+/obj/random/fantasy_item,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"uO" = (
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"uY" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"uZ" = (
+/obj/item/weapon/potion_material/folded_dark,
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/southcaves)
+"vi" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/signpostwood{
+ desc = "Mainly-prey leaning switch ahead. Semi-paragraph posts. Primary kinks focused on bad ends and harder ERP/Vore themes. Hard vore/digestion, unwillingness/non-con, fights/physical violence etc. Open to OV/CV/TV/BV/UB and absorption/merging/goo style vore. Bone/trophy-play greatly welcomed.";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"vj" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/double,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"vs" = (
+/obj/item/weapon/circuitboard/broken,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"vv" = (
+/obj/effect/decal/godray{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/brflowers{
+ name = "peony flowers"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"vx" = (
+/obj/item/clothing/head/cowboy/wide,
+/obj/structure/loot_pile/surface/bones,
+/obj/item/weapon/melee/chainofcommand/curator_whip,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"vB" = (
+/turf/simulated/wall/phoron,
+/area/redgate/jungle/temple)
+"vJ" = (
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/aboveground)
+"vK" = (
+/turf/simulated/floor/water{
+ outdoors = -1
+ },
+/area/redgate/jungle/aboveground)
+"vN" = (
+/obj/structure/flora/lily1,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"vO" = (
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/redgate/jungle/temple)
+"vP" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/obj/item/weapon/reagent_containers/food/snacks/bearmeat,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"vQ" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"vS" = (
+/obj/structure/prop/rock,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"vU" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/backpack/parachute,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"wa" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"wi" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/fruitspawner/watermelon,
+/obj/fruitspawner/watermelon,
+/obj/fruitspawner/watermelon,
+/obj/fruitspawner/watermelon,
+/obj/machinery/light/small/torch,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"wq" = (
+/obj/machinery/light/small/torch,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"wv" = (
+/obj/structure/prop/poicanister,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"ww" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"wB" = (
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"wJ" = (
+/obj/structure/table/gold,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"wP" = (
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"wR" = (
+/obj/structure/prop/statue/pillar/dark,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"wS" = (
+/obj/structure/bed/chair/shuttle_padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"wW" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"wX" = (
+/turf/simulated/floor/water/deep/ocean/diving,
+/area/redgate/jungle/aboveground)
+"xc" = (
+/obj/item/clothing/head/helmet/alien,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"xe" = (
+/mob/living/simple_mob/animal/passive/dog/tamaskan{
+ name = "guardian"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"xf" = (
+/obj/item/clothing/shoes/primitive,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"xh" = (
+/obj/structure/bed/alien,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"xj" = (
+/mob/living/simple_mob/vore/wolf/direwolf{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ faction = "sif";
+ melee_damage_lower = 2;
+ melee_damage_upper = 5;
+ vore_bump_chance = 25;
+ vore_pounce_chance = 50;
+ vore_pounce_maxhealth = 100
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"xl" = (
+/turf/simulated/floor/outdoors/ice{
+ outdoors = -1
+ },
+/area/redgate/jungle/temple)
+"xm" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"xn" = (
+/turf/simulated/floor/water/blood{
+ outdoors = -1
+ },
+/area/redgate/jungle/temple)
+"xt" = (
+/obj/structure/flora/ausbushes/genericbush,
+/mob/living/simple_mob/vore/rabbit{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ vore_bump_chance = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"xv" = (
+/obj/structure/closet/walllocker/wooden/west,
+/obj/item/paint_palette,
+/obj/item/paint_palette,
+/obj/item/paint_brush,
+/obj/item/paint_brush,
+/obj/item/weapon/reagent_containers/glass/paint/black,
+/obj/item/weapon/reagent_containers/glass/paint/blue,
+/obj/item/weapon/reagent_containers/glass/paint/cyan,
+/obj/item/weapon/reagent_containers/glass/paint/green,
+/obj/item/weapon/reagent_containers/glass/paint/red,
+/obj/item/weapon/reagent_containers/glass/paint/yellow,
+/obj/item/weapon/reagent_containers/glass/paint/purple,
+/obj/item/weapon/reagent_containers/glass/paint/orange,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"xD" = (
+/obj/item/space_spider_egg,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"xE" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"xH" = (
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/item/weapon/reagent_containers/food/snacks/egg,
+/obj/structure/closet/walllocker/wooden/east,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"xK" = (
+/obj/structure/table/woodentable,
+/obj/structure/reagent_dispensers/beerkeg/wood,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"xO" = (
+/obj/structure/prop/rock/waterflat{
+ density = 0
+ },
+/mob/living/simple_mob/vore/horse/kelpie,
+/turf/simulated/floor/water{
+ depth = 0
+ },
+/area/redgate/jungle/aboveground)
+"xQ" = (
+/obj/structure/signpostwood{
+ desc = "pred, dom/top tiger girl, rougher kinks, non-con & hv focus, ov & cv okay.";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"xS" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"xU" = (
+/turf/simulated/floor/wood/broken,
+/area/redgate/jungle/aboveground)
+"xY" = (
+/obj/structure/prop/rock/small/alt,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"yj" = (
+/obj/structure/table/gold,
+/obj/item/weapon/material/knife/ritual,
+/obj/random/fantasy_item/better,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"yk" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"yn" = (
+/obj/item/broken_device/random,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"yo" = (
+/obj/random/multiple/underdark/ores,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"yr" = (
+/obj/structure/signpostwood{
+ desc = "Danger west and north, safer east and south.";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"yt" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"yE" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"yG" = (
+/turf/simulated/floor/plating,
+/area/redgate/jungle/aboveground)
+"yH" = (
+/obj/structure/closet/walllocker/wooden/south,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"yJ" = (
+/obj/structure/prop/statue/phoron,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"yM" = (
+/obj/random/fantasy_item,
+/turf/simulated/floor/flesh,
+/area/redgate/jungle/temple)
+"yQ" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/head/buckethat,
+/obj/item/clothing/head/buckethat,
+/obj/item/clothing/head/buckethat,
+/obj/item/clothing/head/cowboy,
+/obj/item/clothing/head/cowboy,
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/head/fedora/panama,
+/obj/item/clothing/head/fedora/white,
+/obj/item/clothing/head/fedora/brown,
+/obj/item/clothing/head/fedora/beige,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/clothing/suit/neo_gorka,
+/obj/item/clothing/suit/storage/duster,
+/obj/item/clothing/suit/storage/duster,
+/obj/item/clothing/suit/storage/flannel/brown,
+/obj/item/clothing/suit/storage/greyjacket,
+/obj/item/clothing/suit/storage/trench,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"yU" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"zl" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/potion,
+/obj/random/potion,
+/obj/random/potion,
+/obj/random/potion,
+/obj/random/potion,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"zn" = (
+/turf/simulated/wall/solidrock,
+/area/redgate/jungle/aboveground)
+"zp" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"zq" = (
+/obj/structure/signpostwood{
+ desc = "BEWARE OF RIVER DRAGON! Exclusively predator, OV, AV, UB and CV all enjoyed in equal measure. Will do willing or unwilling as well as digestion or endo. Digestion will be exclusively melty. Hypnosis is on the table should it be desired. I will not do scat or watersports, nor will I do hard vore. NO MALE CHARACTERS, unless willing to be genderTF'd to female.";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"zr" = (
+/obj/structure/table/woodentable,
+/obj/item/device/healthanalyzer/scroll,
+/obj/item/robot_parts/robot_component/diagnosis_unit,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"zt" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/paint_palette,
+/obj/item/paint_brush,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"zu" = (
+/obj/structure/redgate/away,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"zv" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/device/flashlight/lantern,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"zy" = (
+/obj/structure/simple_door/gold{
+ lock_id = "gold";
+ locked = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"zA" = (
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/aboveground)
+"zC" = (
+/obj/structure/bed/chair/sofa/pew{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"zJ" = (
+/turf/simulated/wall/wood,
+/area/redgate/jungle/aboveground)
+"zP" = (
+/obj/machinery/light/small/torch,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"zU" = (
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"zV" = (
+/obj/structure/table/gold,
+/obj/item/weapon/material/knife/hook,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"zX" = (
+/obj/structure/temple,
+/turf/simulated/floor/water/deep{
+ outdoors = -1
+ },
+/area/redgate/jungle/eastcaves)
+"Ao" = (
+/obj/structure/flora/log2,
+/turf/simulated/floor/water/deep,
+/area/redgate/jungle/aboveground)
+"Au" = (
+/obj/random/meat,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"Ay" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"Az" = (
+/obj/structure/sink/puddle,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"AB" = (
+/obj/structure/bed/chair/sofa/bench/marble{
+ dir = 1
+ },
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/aboveground)
+"AD" = (
+/obj/structure/table/gold,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"AF" = (
+/turf/simulated/wall/gold,
+/area/redgate/jungle/temple)
+"AU" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/beartrap/hunting,
+/obj/item/weapon/beartrap/hunting,
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"AZ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"Bb" = (
+/obj/structure/prop/rock/crystal,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"Bc" = (
+/obj/structure/closet/walllocker/emerglocker/north,
+/obj/machinery/light/floortube{
+ dir = 1
+ },
+/obj/random/firstaid,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"Be" = (
+/turf/simulated/wall/tgmc/window/chigusa,
+/area/redgate/jungle/temple)
+"Bg" = (
+/turf/simulated/floor/flesh,
+/area/redgate/jungle/temple)
+"Bh" = (
+/mob/living/simple_mob/vore/succubus,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/redgate/jungle/temple)
+"Bq" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Bs" = (
+/obj/structure/prop/rock/small/wateralt,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"Bt" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Bu" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/material/twohanded/spear,
+/obj/item/weapon/material/knife/machete,
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"By" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/decal/godray{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"BC" = (
+/obj/structure/closet/tent/B,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"BE" = (
+/obj/structure/barricade,
+/turf/simulated/floor/plating,
+/area/redgate/jungle/westcaves)
+"BF" = (
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/temple)
+"BI" = (
+/obj/structure/table/woodentable,
+/obj/random/fantasy_item/better,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"BJ" = (
+/obj/structure/bed/chair/bay/comfy/blue,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"BN" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/obj/structure/toilet/wooden,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"BS" = (
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/coal,
+/obj/item/weapon/ore/coal,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"BZ" = (
+/obj/structure/table/gold,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"Cb" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "crashedpod"
+ },
+/turf/simulated/shuttle/floor/red,
+/area/redgate/jungle/aboveground)
+"Cn" = (
+/obj/fiftyspawner/log,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Cp" = (
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/kettle/full,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Cs" = (
+/obj/structure/table/gold,
+/obj/random/fantasy_item,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"Ct" = (
+/obj/structure/reagent_dispensers/beerkeg/wood,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Cy" = (
+/obj/structure/bonfire,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"CA" = (
+/obj/item/prop/alien/junk,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/plating,
+/area/redgate/jungle/aboveground)
+"CK" = (
+/obj/random/coin/sometimes,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"CM" = (
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"CN" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/under/tribalwear/hunter,
+/obj/item/clothing/shoes/sandal,
+/obj/item/weapon/gun/launcher/crossbow/bow,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/random/fantasy_item,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"CP" = (
+/obj/machinery/appliance/cooker/oven/yeoldoven,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"CQ" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/thermalponcho,
+/obj/random/tool/alien,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Dh" = (
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Dm" = (
+/obj/structure/closet/coffin,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Du" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"DA" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"DG" = (
+/obj/fiftyspawner/log,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"DQ" = (
+/obj/structure/closet/coffin,
+/obj/item/weapon/bone/ribs,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"DZ" = (
+/obj/item/clothing/head/pin/flower/blue,
+/obj/structure/flora/ausbushes/brflowers{
+ name = "peony flowers"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Ei" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Ej" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/plating,
+/area/redgate/jungle/aboveground)
+"El" = (
+/obj/structure/closet/walllocker/wooden/west,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Eo" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/accessory/tie/blue_clip,
+/obj/item/clothing/accessory/tie/blue_clip,
+/obj/random/mouseray,
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"Et" = (
+/obj/item/clothing/under/primitive,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Eu" = (
+/obj/structure/bonfire,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"EB" = (
+/obj/structure/prop/rock,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"EF" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"EH" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"EJ" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/bedsheet/cosmos,
+/obj/item/weapon/bedsheet/pillow/black,
+/obj/item/clothing/under/tribalwear/hunter,
+/obj/item/clothing/shoes/tribalwear,
+/obj/item/clothing/head/helmet/bucket/wood,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"EN" = (
+/turf/simulated/floor/lava/harmless,
+/area/redgate/jungle/temple)
+"Fc" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Fd" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/item/stack/material/log,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Ff" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/item/stack/material/durasteel,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Fj" = (
+/mob/living/simple_mob/vore/vore_hostile/leaper,
+/turf/simulated/floor/flesh,
+/area/redgate/jungle/temple)
+"Fk" = (
+/obj/structure/closet/walllocker/wooden/east,
+/obj/fruitspawner/carrot,
+/obj/fruitspawner/cabbage,
+/obj/fruitspawner/berry,
+/obj/fruitspawner/apple,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Fl" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/storage/backpack/explorer,
+/obj/item/clothing/suit/storage/toggle/labcoat/neo_ranger,
+/obj/item/clothing/accessory/poncho/roles/ranger/tan,
+/obj/item/clothing/shoes/boots/jungle,
+/obj/item/weapon/material/knife/tacknife/boot,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Fq" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/obj/item/weapon/coin/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Fu" = (
+/obj/structure/table/alien/blue,
+/obj/item/device/nif,
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/temple)
+"Fv" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"Fx" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/gun/launcher/crossbow/bow,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/obj/item/weapon/arrow/standard,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"FA" = (
+/obj/structure/holostool,
+/obj/random/toolbox,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"FC" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"FD" = (
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/southcaves)
+"FF" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"FI" = (
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"FM" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/potion,
+/obj/random/potion,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"FQ" = (
+/obj/item/weapon/reagent_containers/food/snacks/packaged/genration,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Gg" = (
+/obj/fruitspawner/destroyingangel,
+/obj/fruitspawner/destroyingangel,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Gs" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"GE" = (
+/obj/random/potion_ingredient,
+/obj/fruitspawner/apple,
+/obj/structure/closet/crate,
+/obj/item/robot_parts/robot_component/binary_communication_device,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"GF" = (
+/obj/structure/closet/walllocker/wooden/west,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"GJ" = (
+/obj/structure/prop/fantasy/kiln,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"GK" = (
+/mob/living/simple_mob/vore/alienanimals/skeleton/alt{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate
+ },
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/redgate/jungle/temple)
+"GN" = (
+/obj/structure/closet/crate/chest,
+/obj/random/fantasy_item,
+/obj/random/potion_base,
+/obj/random/potion_ingredient,
+/obj/item/weapon/simple_key/dungeon{
+ color = "#00fff2";
+ key_id = "diamond";
+ name = "diamond key"
+ },
+/obj/item/weapon/coin/diamond,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"GP" = (
+/obj/structure/table/rack/wood,
+/obj/item/clothing/under/tribalwear/hunter,
+/obj/item/clothing/shoes/tribalwear,
+/obj/item/weapon/material/knife/stone/wood,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"GT" = (
+/turf/simulated/floor/gorefloor,
+/area/redgate/jungle/temple)
+"GV" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"HB" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"HG" = (
+/obj/effect/floor_decal/milspec_sterile/purple/half{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"HK" = (
+/obj/structure/sign/scenery/overlay/vine/mid,
+/turf/simulated/wall/wood,
+/area/redgate/jungle/aboveground)
+"Ib" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/stack/material/log,
+/obj/item/weapon/storage/box/matches,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Ig" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/suit/unathi/robe,
+/obj/item/clothing/shoes/sandal,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Ii" = (
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"Io" = (
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"Ip" = (
+/obj/structure/flora/lily3,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"IA" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/accessory/tie/horrible,
+/obj/item/clothing/accessory/tie/horrible,
+/obj/item/clothing/accessory/tie/horrible,
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"IB" = (
+/turf/simulated/wall/solidrock,
+/area/redgate/jungle/eastcaves)
+"IC" = (
+/mob/living/simple_mob/vore/vampire,
+/turf/simulated/floor/tiled/kafel_full/yellow,
+/area/redgate/jungle/temple)
+"II" = (
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"IL" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"IM" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"IO" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"IQ" = (
+/obj/machinery/appliance/cooker/oven/yeoldoven,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"IT" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"IV" = (
+/obj/item/weapon/soap/golden_soap,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"IZ" = (
+/obj/structure/table/gold,
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Jc" = (
+/turf/simulated/shuttle/floor,
+/area/redgate/jungle/aboveground)
+"Jd" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/coin/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Jg" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"Ji" = (
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Jj" = (
+/mob/living/simple_mob/vore/mantrap,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Jm" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/log1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Jo" = (
+/obj/structure/simple_door/wood,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"Jp" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/fantasy_item,
+/obj/random/fantasy_item,
+/obj/fiftyspawner/iron,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/ore/iron,
+/obj/item/weapon/ore/iron,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Js" = (
+/obj/structure/bed/chair/sofa/corner/brown{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Jt" = (
+/obj/structure/window/basic/full,
+/obj/structure/curtain/black,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Jx" = (
+/obj/structure/prop/statue/lion,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Jz" = (
+/turf/simulated/open,
+/area/redgate/jungle/southcaves)
+"JD" = (
+/obj/structure/sign/kiddieplaque{
+ desc = "The language is lost to time, but it includes a pictogram depicting four people pointing up, then one pointing left, and one more poiting up. Another picture shows walls of flame and a picture of people avoiding them.";
+ name = "ancient text";
+ pixel_y = 27
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"JG" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"JJ" = (
+/mob/living/simple_mob/vore/alienanimals/succlet/dark,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"JL" = (
+/obj/structure/closet/cabinet,
+/obj/item/weapon/bedsheet/pillow/orange,
+/obj/item/clothing/gloves/evening,
+/obj/item/clothing/under/wedding/floofdress,
+/obj/item/clothing/head/lavender_crown,
+/obj/item/clothing/mask/lacemask,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"JO" = (
+/obj/structure/closet/crate/chest,
+/obj/random/fantasy_item,
+/obj/random/fantasy_item,
+/obj/random/fantasy_item/better,
+/obj/item/weapon/potion_material/golden_scale,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"JR" = (
+/obj/structure/table/gold,
+/obj/machinery/alembic,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"JV" = (
+/turf/simulated/shuttle/wall,
+/area/redgate/jungle/westcaves)
+"Kf" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/item/stack/material/steel,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Ki" = (
+/turf/simulated/floor/water,
+/area/redgate/jungle/eastcaves)
+"Kj" = (
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/eastcaves)
+"Kk" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Kl" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/chemical_dispenser/kettle/full,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Kp" = (
+/mob/living/simple_mob/vore/squirrel,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Kv" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/random/potion_ingredient,
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Kw" = (
+/obj/structure/bed/double,
+/obj/item/weapon/bedsheet/browndouble,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Kz" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"KF" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"KJ" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/fruitspawner/carrot,
+/obj/fruitspawner/carrot,
+/obj/fruitspawner/carrot,
+/obj/fruitspawner/durian,
+/obj/fruitspawner/lemon,
+/obj/fruitspawner/lemon,
+/obj/fruitspawner/lemon,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"KM" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/soap/white_soap,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"KO" = (
+/obj/structure/easel,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"KP" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/mob/living/simple_mob/slime/xenobio/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"KV" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/material/twohanded/spear,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"La" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Lb" = (
+/obj/machinery/microwave/cookingpot,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Ld" = (
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"Lf" = (
+/obj/structure/table/woodentable,
+/obj/item/clothing/accessory/holster/machete/rapier/swords,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Lg" = (
+/obj/item/stack/material/durasteel,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Li" = (
+/mob/living/simple_mob/vore/alienanimals/succlet,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Lk" = (
+/mob/living/simple_mob/vore/redpanda/fae,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Ls" = (
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/temple)
+"Lt" = (
+/obj/random/fantasy_item/better,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"LB" = (
+/obj/item/clothing/head/pin/flower/violet,
+/obj/structure/flora/ausbushes/brflowers{
+ name = "peony flowers"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"LD" = (
+/obj/structure/window/basic/full,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"LK" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"LM" = (
+/obj/structure/table/rack/wood,
+/obj/item/weapon/shield/primitive,
+/obj/item/weapon/material/twohanded/spear/flint,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"LR" = (
+/obj/structure/bed/chair/sofa/corner/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"LT" = (
+/obj/structure/bed/bath,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"LZ" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"Ma" = (
+/turf/simulated/floor/water/deep,
+/area/redgate/jungle/aboveground)
+"Mj" = (
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish,
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish,
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish,
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish,
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish,
+/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish,
+/obj/structure/table/woodentable,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"Mm" = (
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Mo" = (
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Mv" = (
+/obj/machinery/microwave/cookingpot,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Mx" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"MJ" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/white,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"MM" = (
+/mob/living/simple_mob/vore/bat,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"MN" = (
+/obj/effect/floor_decal/milspec_sterile/purple/half{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"MP" = (
+/obj/effect/floor_decal/atoll/border{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"MS" = (
+/mob/living/simple_mob/vore/weretiger{
+ ai_holder_type = /datum/ai_holder/simple_mob/vore
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"MV" = (
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"MW" = (
+/obj/structure/signpostwood{
+ desc = "Warning! Digestion! Siren's known to devour passers-by!";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Nc" = (
+/obj/item/weapon/bone/skull/unknown,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Ne" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/water,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/water,
+/obj/random/potion,
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Nj" = (
+/obj/structure/flora/ausbushes/brflowers{
+ name = "peony flowers"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Ns" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"NE" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/random/potion,
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"NV" = (
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"NY" = (
+/obj/item/weapon/coin/phoron,
+/obj/structure/table/alien,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"NZ" = (
+/obj/structure/simple_door/iron,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Od" = (
+/turf/simulated/floor/wood/alt/panel/broken,
+/area/redgate/jungle/aboveground)
+"Of" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"Oi" = (
+/turf/simulated/floor/water/deep/pool,
+/area/redgate/jungle/temple)
+"Ok" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/accessory/tie/yellow,
+/obj/item/clothing/accessory/tie/red_long,
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"Ol" = (
+/obj/effect/floor_decal/atoll/border/invert{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Om" = (
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/exploslug,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Oq" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/mask/gas/plaguedoctor,
+/obj/item/clothing/head/plaguedoctorhat,
+/obj/item/clothing/suit/storage/toggle/labcoat/plaguedoctor,
+/obj/item/clothing/suit/bio_suit/plaguedoctorsuit,
+/obj/item/clothing/suit/space/rig/baymed,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"Or" = (
+/obj/structure/bed/chair/sofa/left/brown,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Ow" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"OB" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"OC" = (
+/obj/structure/signpostwood{
+ desc = "Endo-lean raptor pred: willing/unwilling";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"OE" = (
+/mob/living/simple_mob/vore/greatwolf{
+ melee_damage_lower = 4;
+ melee_damage_upper = 8;
+ vore_pounce_chance = 50
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"OG" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"OM" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/redgate/jungle/aboveground)
+"ON" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/accessory/tie/blue_long,
+/obj/item/clothing/accessory/tie/darkgreen,
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"OT" = (
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"OX" = (
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/light/small/torch,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"OY" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/fruitspawner/lime,
+/obj/fruitspawner/lime,
+/obj/fruitspawner/lime,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"Pe" = (
+/obj/fruitspawner/ambrosia,
+/obj/fruitspawner/ambrosia,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Pf" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/beartrap/hunting,
+/obj/item/weapon/beartrap/hunting,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Ph" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Pn" = (
+/obj/random/fantasy_item,
+/obj/random/fantasy_item,
+/obj/structure/closet/crate,
+/obj/item/robot_parts/robot_component/actuator,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/aboveground)
+"Po" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/accessory/tie/white,
+/obj/item/clothing/accessory/tie/red_clip,
+/turf/simulated/floor/carpet/happy,
+/area/redgate/jungle/temple)
+"Ps" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Pv" = (
+/obj/structure/closet/walllocker/wooden/east,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac,
+/obj/item/clothing/suit/shrine_maiden,
+/obj/random/coin,
+/obj/random/coin,
+/obj/random/coin,
+/obj/random/coin,
+/obj/random/coin,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Px" = (
+/obj/random/multiple/underdark/treasure,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"PF" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/effect/decal/godray{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"PG" = (
+/mob/living/simple_mob/vore/demon/engorge{
+ ai_holder_type = /datum/ai_holder/simple_mob/vore;
+ vore_pounce_chance = 50
+ },
+/turf/simulated/floor/gorefloor2,
+/area/redgate/jungle/temple)
+"PK" = (
+/obj/item/weapon/bedsheet/pillow,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"PO" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"PS" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/healing,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/healing,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/pain,
+/obj/item/weapon/reagent_containers/glass/bottle/potion/pain,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"PW" = (
+/obj/structure/table/woodentable,
+/obj/item/clothing/head/pelt,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"PY" = (
+/turf/simulated/floor/outdoors/grass/forest{
+ grass_chance = 0
+ },
+/area/redgate/jungle/aboveground)
+"Qk" = (
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/westcaves)
+"Ql" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Qm" = (
+/obj/structure/table/woodentable,
+/obj/fruitspawner/ambrosia,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Qp" = (
+/obj/random/powercell,
+/turf/simulated/floor/gorefloor2,
+/area/redgate/jungle/temple)
+"Qu" = (
+/obj/structure/bed/double/weaversilk_nest,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"Qv" = (
+/obj/structure/table/darkglass,
+/obj/item/weapon/potion_material/folded_dark,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"Qx" = (
+/obj/effect/floor_decal/milspec/color/purple,
+/obj/item/weapon/storage/vore_egg/purple,
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"Qz" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/obj/item/weapon/handcuffs/cable/plantfiber,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"QD" = (
+/obj/structure/bed/pillowpile,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/southcaves)
+"QJ" = (
+/obj/structure/simple_door/phoron{
+ lock_id = "phoron";
+ locked = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/temple)
+"QL" = (
+/turf/simulated/floor/lava,
+/area/redgate/jungle/temple)
+"QN" = (
+/obj/structure/signpostwood{
+ desc = "Giant arachne pred/ERP dom-pref, unwilling preferred";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"QP" = (
+/turf/simulated/wall/wood,
+/area/redgate/jungle/westcaves)
+"QR" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"QT" = (
+/obj/structure/bonfire,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"QU" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/rocks1,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Rb" = (
+/obj/structure/bed/chair/sofa/left/brown,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Rj" = (
+/obj/item/weapon/material/knife/stone/bone,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Rl" = (
+/obj/machinery/light/small/torch,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Rm" = (
+/obj/structure/salvageable/console{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"Ro" = (
+/obj/machinery/light/small/torch{
+ dir = 1
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"Ru" = (
+/obj/structure/prop/rock/small/water,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"Rv" = (
+/obj/structure/bed/chair/sofa/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Ry" = (
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/westcaves)
+"RA" = (
+/obj/effect/floor_decal/atoll/border{
+ dir = 8
+ },
+/obj/random/coin,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"RC" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/trash/genration,
+/obj/item/trash/sweetration,
+/obj/item/trash/meatration,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/fruitspawner/watermelon,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"RD" = (
+/obj/structure/simple_door/sandstone,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"RL" = (
+/obj/structure/bed/padded,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"RU" = (
+/obj/machinery/microwave/cookingpot,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"RX" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"RZ" = (
+/obj/structure/prop/machine/solifier{
+ pixel_y = 14
+ },
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"Sn" = (
+/obj/structure/prop/fantasy/anvil,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Sp" = (
+/obj/item/weapon/digestion_remains/skull/akula,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Sr" = (
+/mob/living/simple_mob/vore/alienanimals/succlet/big,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Sy" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"SD" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"SL" = (
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"SM" = (
+/obj/structure/closet/grave/dirthole,
+/obj/random/fantasy_item/better,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"SP" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"ST" = (
+/obj/structure/table/marble,
+/obj/item/capture_crystal/random,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/aboveground)
+"Tb" = (
+/mob/living/simple_mob/vore/vore_hostile/gelatinous_cube,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Te" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/clothing/under/pants/classicjeans/ripped,
+/obj/item/clothing/accessory/poncho/roles/cloak/half,
+/obj/item/clothing/head/hood/explorer,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"Tf" = (
+/obj/machinery/light/small/torch,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/aboveground)
+"Tn" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Tt" = (
+/obj/structure/simple_door/hardwood,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Tw" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/knife/stone/bone,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"TA" = (
+/obj/structure/prop/rock/watersharp,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"TC" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"TE" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/random/coin/sometimes,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"TF" = (
+/obj/item/stack/material/cloth,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"TH" = (
+/obj/effect/spider/stickyweb/dark,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"TI" = (
+/obj/item/weapon/simple_key/dungeon{
+ color = "#ff00ee";
+ key_id = "phoron";
+ name = "phoron key"
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"TM" = (
+/obj/random/coin,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"TX" = (
+/obj/structure/flora/log1,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"TY" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"Ui" = (
+/obj/item/weapon/bedsheet/pillow/orange,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Uk" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"Un" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"Uq" = (
+/obj/random/tool/alien,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"Ur" = (
+/mob/living/simple_mob/vore/woof{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Uv" = (
+/turf/simulated/shuttle/wall,
+/area/redgate/jungle/aboveground)
+"UA" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"UC" = (
+/obj/structure/flora/ausbushes/grassybush,
+/mob/living/simple_mob/vore/wolf/direwolf{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ faction = "sif";
+ melee_damage_lower = 2;
+ melee_damage_upper = 5;
+ vore_bump_chance = 25;
+ vore_pounce_chance = 50;
+ vore_pounce_maxhealth = 100
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"UE" = (
+/mob/living/simple_mob/animal/passive/fish/measelshark,
+/turf/simulated/floor/water/deep{
+ outdoors = -1
+ },
+/area/redgate/jungle/eastcaves)
+"UG" = (
+/obj/structure/closet/crate/wooden,
+/obj/random/potion_ingredient,
+/obj/random/potion_ingredient,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"UQ" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"US" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"UY" = (
+/obj/item/weapon/bedsheet/pillow/orange,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"UZ" = (
+/mob/living/simple_mob/vore/alienanimals/succlet,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"Vb" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"Vc" = (
+/obj/structure/curtain/open{
+ color = "#c28132"
+ },
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Ve" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/rainbowdouble,
+/obj/item/weapon/bedsheet/pillow/red,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"Vf" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Vi" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Vj" = (
+/obj/item/weapon/ore/gold,
+/obj/item/weapon/ore/gold,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"Vk" = (
+/obj/effect/floor_decal/milspec_sterile/purple/half{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"Vm" = (
+/obj/structure/prop/alien/computer{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"Vt" = (
+/obj/structure/bed/double,
+/obj/item/weapon/bedsheet/browndouble,
+/obj/item/weapon/bedsheet/pillow/orange,
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"VB" = (
+/obj/structure/table/gold,
+/obj/random/potion,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"VN" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/gun/launcher/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"VQ" = (
+/obj/structure/picnic_blanket_deployed/for_mapping_use,
+/turf/simulated/floor/outdoors/grass/forest{
+ grass_chance = 0
+ },
+/area/redgate/jungle/aboveground)
+"VT" = (
+/obj/item/weapon/reagent_containers/glass/bucket/wood,
+/turf/simulated/floor/wood/alt/panel,
+/area/redgate/jungle/aboveground)
+"VY" = (
+/obj/structure/bed/pillowpile,
+/obj/machinery/light/floortube{
+ pixel_y = -3
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/southcaves)
+"Wd" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/melee/classic_baton,
+/obj/item/weapon/melee/classic_baton,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Wj" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/knife/butch,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"Wk" = (
+/mob/living/simple_mob/vore/rabbit{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ vore_bump_chance = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Wq" = (
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/temple)
+"Wr" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"Wv" = (
+/obj/structure/window/basic/full,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"WT" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/pillow/orange,
+/obj/item/weapon/bedsheet/orangedouble,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"WW" = (
+/mob/living/simple_mob/animal/passive/fish/salmon,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"Xc" = (
+/obj/structure/prop/rock/waterflat,
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"Xd" = (
+/mob/living/simple_mob/vore/scel,
+/turf/simulated/floor/weird_things/dark,
+/area/redgate/jungle/temple)
+"Xf" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"Xh" = (
+/obj/structure/table/gold,
+/obj/random/miniature,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"Xi" = (
+/obj/effect/floor_decal/milspec/color/purple,
+/obj/item/weapon/potion_material/living_coral,
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"Xk" = (
+/obj/random/outcrop,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"Xm" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/westcaves)
+"Xn" = (
+/obj/structure/prop/fantasy/grindstone,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Xp" = (
+/obj/structure/closet/tent,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/outdoors/mud,
+/area/redgate/jungle/aboveground)
+"Xu" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"Xx" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"XD" = (
+/obj/structure/table/alien/blue,
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/temple)
+"XG" = (
+/obj/item/weapon/reagent_containers/glass/bucket/wood,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"XJ" = (
+/obj/random/material/precious,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"XM" = (
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"XO" = (
+/obj/structure/reagent_dispensers/watertank/barrel,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"XS" = (
+/obj/effect/floor_decal/milspec_sterile/purple/half,
+/turf/simulated/shuttle/floor/purple,
+/area/redgate/jungle/temple)
+"XT" = (
+/obj/structure/prop/statue/statue2,
+/turf/simulated/floor/tiled/yellow,
+/area/redgate/jungle/temple)
+"XX" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/weapon/storage/pouch/flares/full_flare,
+/obj/item/weapon/storage/pouch/flares/full_flare,
+/obj/item/weapon/storage/pouch/flares/full_flare,
+/obj/item/weapon/storage/pouch/flares/full_flare,
+/turf/simulated/floor/wood/alt,
+/area/redgate/jungle/aboveground)
+"Ya" = (
+/obj/fruitspawner/glowshroom,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+"Ye" = (
+/obj/structure/reagent_dispensers/bloodbarrel,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/temple)
+"Yi" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Yj" = (
+/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced/random,
+/obj/structure/closet/alien,
+/obj/random/bluespace,
+/obj/random/maintenance/research,
+/obj/random/rigsuit,
+/turf/simulated/floor/gorefloor2,
+/area/redgate/jungle/temple)
+"Yl" = (
+/turf/simulated/shuttle/floor/black,
+/area/redgate/jungle/aboveground)
+"Ym" = (
+/obj/structure/closet/cabinet,
+/obj/random/potion,
+/obj/random/potion_base,
+/obj/item/clothing/accessory/scarf/stripedblue,
+/obj/item/clothing/under/dress/goldwrap,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/aboveground)
+"YE" = (
+/turf/simulated/floor/water/digestive_enzymes,
+/area/redgate/jungle/temple)
+"YF" = (
+/obj/effect/floor_decal/milspec/color/silver,
+/obj/random/slimecore,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"YG" = (
+/obj/fiftyspawner/gold,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"YH" = (
+/obj/structure/closet/tent/B,
+/obj/item/weapon/material/twohanded/fireaxe,
+/obj/random/potion,
+/obj/random/potion_base,
+/obj/random/coin,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"YN" = (
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/temple)
+"YP" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/weapon/reagent_containers/glass/pint_mug,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"YS" = (
+/obj/structure/prop/blackbox,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/westcaves)
+"YV" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/eastcaves)
+"Zb" = (
+/obj/structure/sign/scenery/overlay/vine/mid,
+/obj/structure/sign/scenery/overlay/vine/top,
+/turf/simulated/wall/wood,
+/area/redgate/jungle/aboveground)
+"Zn" = (
+/obj/structure/simple_door/sandstone,
+/turf/simulated/mineral/floor/light_border,
+/area/redgate/jungle/temple)
+"Zp" = (
+/turf/simulated/floor/water,
+/area/redgate/jungle/aboveground)
+"Zq" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"Zs" = (
+/obj/structure/closet/grave/dirthole,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"Zv" = (
+/obj/structure/closet/coffin,
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"ZB" = (
+/obj/structure/table/darkglass,
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/obj/random/fantasy_item/better,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/westcaves)
+"ZE" = (
+/obj/structure/signpostwood{
+ desc = "Subby Endo/Absorb Pred! Loves Willing vibes, exhib, and multiprey!";
+ pixel_y = 16
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ZJ" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ZK" = (
+/obj/random/potion_ingredient,
+/turf/simulated/floor/gorefloor,
+/area/redgate/jungle/temple)
+"ZM" = (
+/turf/simulated/wall/log,
+/area/redgate/jungle/aboveground)
+"ZQ" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/mineral/floor/light{
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/redgate/jungle/temple)
+"ZR" = (
+/turf/simulated/floor/carpet/turcarpet,
+/area/redgate/jungle/temple)
+"ZS" = (
+/mob/living/simple_mob/animal/passive/bird/parrot/white_cockatoo,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/redgate/jungle/aboveground)
+"ZU" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/mineral/floor/cave,
+/area/redgate/jungle/southcaves)
+
+(1,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+Zp
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+Zp
+Zp
+zU
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+np
+"}
+(2,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+QP
+QP
+QP
+QP
+QP
+QP
+QP
+QP
+QP
+ke
+ke
+ke
+ke
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+vQ
+yE
+Yi
+Zp
+Zp
+Zp
+wX
+oE
+wX
+wX
+wX
+Zp
+Zp
+wX
+wX
+wX
+oE
+wX
+wX
+Zp
+Zp
+Zp
+zU
+zU
+vQ
+zU
+xt
+zU
+ef
+zU
+ef
+Yi
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+jG
+YE
+YE
+YE
+YE
+pL
+pL
+pL
+Sp
+Ji
+bf
+pL
+pL
+CQ
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+"}
+(3,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+wR
+uf
+wR
+ke
+ke
+ke
+ke
+ke
+QP
+CN
+SL
+SL
+Of
+SL
+hh
+SL
+QP
+QP
+QP
+QP
+QP
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+Dh
+zU
+zU
+zU
+Zp
+Zp
+wX
+wX
+wX
+wX
+Zp
+hG
+hG
+Zp
+wX
+wX
+wX
+wX
+Zp
+Zp
+Zp
+zU
+zU
+zU
+Dh
+zU
+zU
+CK
+CK
+TE
+yE
+CK
+pL
+pL
+xl
+ou
+pL
+ou
+xl
+xl
+xl
+xl
+xl
+xl
+xl
+xl
+pL
+Ji
+Ji
+pL
+jG
+YE
+YE
+YE
+YE
+pL
+pL
+pL
+pL
+ue
+pL
+pL
+pL
+gO
+Zv
+gO
+ti
+gO
+Dm
+pL
+"}
+(4,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+Ry
+Ry
+Jg
+uf
+uf
+uf
+qt
+ke
+ke
+ke
+ke
+QP
+Tw
+SL
+hh
+SL
+SL
+LZ
+SL
+Jo
+gX
+gX
+QP
+QP
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+Zp
+Zp
+Zp
+wX
+wX
+wX
+Zp
+hG
+hG
+Zp
+wX
+wX
+wX
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+yE
+zU
+Dh
+CK
+Jx
+tC
+vQ
+pL
+pL
+xl
+xl
+xl
+xl
+xl
+ou
+xl
+xl
+xl
+cA
+xl
+xl
+pL
+Ji
+Ji
+RD
+jG
+YE
+YE
+YE
+uM
+pL
+oX
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+vO
+vO
+vO
+vO
+GK
+vO
+pL
+"}
+(5,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+Ry
+Ry
+Ry
+uf
+uf
+uf
+uf
+Qv
+ke
+ke
+ke
+ke
+QP
+GV
+aM
+xm
+SL
+uz
+Wj
+Xm
+QP
+QP
+QP
+QP
+QP
+ke
+zn
+zn
+zn
+zn
+zn
+zU
+Dh
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+wX
+wX
+wX
+Zp
+Zp
+wX
+wX
+wX
+wX
+Zp
+Zp
+Zp
+zU
+Dh
+zU
+zU
+ef
+Yi
+zU
+CK
+Yi
+cM
+CK
+zU
+pL
+pL
+Ji
+xl
+xl
+xl
+xl
+xl
+xl
+ou
+xl
+xl
+ou
+xl
+pL
+Ji
+Ji
+pL
+jG
+YE
+YE
+YE
+YE
+pL
+vx
+Ji
+Ji
+Ji
+Ji
+Ji
+vO
+vO
+vO
+GK
+vO
+vO
+vO
+pL
+"}
+(6,1,1) = {"
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+Ry
+Ry
+OG
+uf
+uf
+uf
+ZB
+ke
+ke
+ke
+ke
+QP
+QP
+QP
+QP
+SL
+QP
+QP
+QP
+QP
+ke
+ke
+ke
+ke
+ke
+zn
+zn
+zn
+zn
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+vQ
+zU
+Zp
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+Wk
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+pL
+pL
+Ji
+Ji
+pL
+xl
+xl
+xl
+xl
+xl
+xl
+xl
+xl
+xl
+pL
+Ji
+Ji
+pL
+jG
+YE
+YE
+YE
+YE
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+vO
+vO
+vO
+vO
+vO
+vO
+pL
+"}
+(7,1,1) = {"
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+mT
+vU
+lT
+RC
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+wR
+uf
+wR
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+QP
+Jo
+QP
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+zn
+zn
+zn
+vQ
+zU
+zU
+ef
+Yi
+zU
+zU
+vQ
+zU
+yE
+zU
+Yi
+zU
+Yi
+Zp
+Zp
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+Zp
+TA
+Zp
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+pL
+pL
+Ji
+Ji
+pL
+xl
+xl
+xl
+xl
+xl
+ou
+xl
+xl
+xl
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+Pe
+Pe
+Pe
+pL
+gO
+rr
+gO
+mv
+gO
+DQ
+pL
+"}
+(8,1,1) = {"
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+Te
+uf
+uf
+uf
+uf
+uf
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+Jg
+uf
+Jg
+od
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+zn
+zn
+zn
+Yi
+yE
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+vQ
+yE
+zU
+zU
+zU
+Zp
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+Zp
+Zp
+Zp
+ef
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+Yi
+zU
+pL
+pL
+Ji
+Ji
+pL
+xl
+ou
+xl
+xl
+xl
+xl
+xl
+ou
+xl
+pL
+Ji
+Ji
+pL
+yj
+fj
+Ii
+qL
+Ye
+pL
+Ji
+Ji
+ue
+Ji
+pt
+pt
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+"}
+(9,1,1) = {"
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+Ro
+uf
+uf
+uf
+uf
+wq
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+fi
+uf
+uf
+uf
+uf
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+zn
+zn
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+Zp
+Zp
+Zp
+Zp
+wX
+wX
+wX
+wX
+Zp
+Zp
+Zp
+Zp
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+zU
+vQ
+zU
+zU
+pL
+pL
+Ji
+Ji
+pL
+xl
+xl
+xl
+xl
+ou
+xl
+xl
+xl
+xl
+pL
+Ji
+Ji
+pL
+zV
+Au
+BZ
+fj
+Ii
+ue
+Ji
+Ji
+pL
+Gg
+Gg
+Gg
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(10,1,1) = {"
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+dC
+uf
+uf
+bD
+SP
+uf
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+uf
+uf
+UY
+uf
+uf
+uf
+uf
+DA
+ke
+ke
+ke
+ke
+zn
+zU
+zU
+zU
+vQ
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+wX
+wX
+wX
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+Dh
+zU
+Jj
+zU
+zU
+zU
+zU
+Yi
+zU
+yE
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(11,1,1) = {"
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+ke
+uf
+tk
+ke
+ke
+ne
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+yE
+vQ
+Yi
+zU
+zU
+ef
+zn
+zn
+zn
+ke
+ke
+SP
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+uf
+UY
+Eu
+uf
+uf
+uf
+uf
+uf
+uf
+ke
+ke
+ke
+zn
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+wX
+wX
+Zp
+Zp
+Zp
+Zp
+zU
+ef
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+"}
+(12,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+un
+ke
+ke
+vQ
+zU
+as
+aV
+Vi
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+zn
+ke
+uf
+uf
+uf
+uf
+uf
+sM
+gX
+gX
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+df
+uf
+UY
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+zU
+zU
+zU
+zU
+zU
+Yi
+Ns
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+MW
+Ru
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+Yi
+vQ
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+Wk
+zU
+zU
+zU
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+"}
+(13,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+jN
+kh
+wS
+oZ
+as
+qV
+zU
+Ff
+Vi
+vi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+Yi
+vQ
+Yi
+uf
+uf
+lN
+uf
+uf
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+ke
+uf
+uf
+uf
+SP
+ke
+ke
+gS
+uf
+uf
+uf
+uf
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Dh
+yE
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+pL
+pL
+pL
+RD
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+oe
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+RD
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+"}
+(14,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+JV
+Bc
+bn
+cY
+sc
+Vi
+fg
+zU
+Vi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+Yi
+yE
+vQ
+zU
+zU
+zn
+zn
+uf
+Vb
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+vQ
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+Yi
+pL
+pL
+pL
+Ji
+pL
+Jp
+Ji
+Xn
+pL
+Ji
+Ji
+pL
+pQ
+Ow
+pQ
+pQ
+pQ
+pQ
+pL
+Js
+FI
+Ji
+Zq
+pL
+Ji
+Ji
+pL
+gO
+Ji
+Ji
+Ji
+Ji
+Ji
+gO
+pL
+Ji
+Ji
+pL
+"}
+(15,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+Vi
+JV
+pR
+iT
+YS
+ib
+as
+zU
+zU
+as
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+vQ
+zn
+ke
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+ke
+ke
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+yE
+Yi
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+vQ
+pL
+bY
+Ji
+Ji
+pL
+BS
+Ji
+Ji
+pL
+Ji
+Ji
+pL
+pQ
+Ow
+YF
+cX
+gt
+pQ
+pL
+Or
+La
+Ji
+La
+pL
+Ji
+Ji
+pL
+Ji
+Bh
+vO
+vO
+vO
+vO
+Ji
+pL
+Ji
+Ji
+pL
+"}
+(16,1,1) = {"
+zn
+zn
+zn
+zn
+zU
+ww
+JV
+Qk
+Qk
+BE
+iN
+Yi
+Kf
+as
+zU
+Vi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ke
+di
+uf
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+OT
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+Nc
+zU
+Zp
+Zp
+zU
+Yi
+zU
+zU
+Yi
+zU
+zU
+zU
+pL
+FC
+MS
+Ji
+pL
+GJ
+Ji
+Ji
+RD
+Ji
+Ji
+pL
+pQ
+aB
+Jd
+Fq
+KP
+pQ
+pL
+Ji
+Ji
+Ji
+dJ
+Be
+Ji
+Ji
+pL
+Ji
+vO
+Oi
+Oi
+Oi
+vO
+Ji
+Ji
+Ji
+Ji
+pL
+"}
+(17,1,1) = {"
+zn
+zn
+zn
+zU
+zU
+Lg
+Vi
+as
+xE
+ww
+as
+Vi
+Vi
+zp
+Vi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+yE
+zU
+Yi
+yE
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+SP
+uf
+uf
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+ef
+zU
+Zp
+Zp
+Zp
+Zp
+yE
+zU
+zU
+zU
+vQ
+LK
+yE
+zU
+Tn
+zU
+Zp
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+pL
+CP
+Ji
+nP
+pL
+DG
+Ji
+Ji
+pL
+Ji
+Ji
+pL
+pQ
+pQ
+pQ
+pQ
+pQ
+pQ
+pL
+Ji
+Zq
+Zq
+Ji
+Be
+Ji
+Ji
+pL
+Ji
+vO
+Oi
+Oi
+Oi
+vO
+Ji
+Ji
+Ji
+Ji
+pL
+"}
+(18,1,1) = {"
+zn
+zn
+zn
+ef
+zU
+vQ
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+vQ
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+uf
+uf
+uf
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+Yi
+zU
+zU
+zU
+vQ
+Yi
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+Yi
+zU
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+Yi
+yE
+Tn
+Zp
+TX
+Zp
+LK
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+pL
+pL
+pL
+pL
+pL
+Lf
+Ji
+Sn
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+YP
+La
+Ji
+pL
+Ji
+Ji
+pL
+Ji
+vO
+vO
+vO
+Bh
+vO
+Ji
+pL
+Ji
+Ji
+pL
+"}
+(19,1,1) = {"
+zn
+zn
+zn
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+dT
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+Yi
+zn
+zn
+zn
+uf
+uf
+Vb
+zn
+zn
+zn
+zn
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+ef
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+Dh
+Tn
+ek
+Zp
+Zp
+Zp
+Zp
+Ip
+Zp
+Tn
+zU
+zU
+zU
+zU
+zU
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+mz
+uL
+dJ
+pL
+Ji
+Ji
+pL
+jG
+jG
+JR
+VB
+jG
+og
+pL
+Ji
+La
+La
+Ji
+pL
+Ji
+Ji
+pL
+gO
+Ji
+Ji
+Ji
+Ji
+Ji
+gO
+pL
+Ji
+Ji
+pL
+"}
+(20,1,1) = {"
+zn
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+zU
+ef
+zU
+zn
+zn
+ke
+uf
+ke
+zn
+zn
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+dT
+zU
+zU
+Dh
+zU
+vQ
+Yi
+zU
+zU
+zU
+yE
+zU
+zU
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+Zp
+Ip
+wX
+wX
+wX
+Zp
+Zp
+zU
+yE
+zU
+zU
+ef
+zU
+lM
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+jG
+jG
+jG
+jG
+jG
+jG
+pL
+Ji
+dJ
+dJ
+Ji
+RD
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(21,1,1) = {"
+zn
+zn
+zU
+zU
+dT
+zU
+zU
+zU
+ef
+zU
+zU
+Ns
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+dT
+zU
+zU
+Yi
+zU
+yE
+vQ
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+ke
+uf
+ke
+vQ
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+vQ
+Jj
+yE
+zU
+zU
+zU
+Dh
+zU
+dT
+dT
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+Dh
+zU
+vQ
+Yi
+Zp
+Zp
+Zp
+zU
+zU
+ef
+Zp
+Zp
+wX
+wX
+Zp
+ek
+Tn
+LK
+zU
+zU
+zU
+zU
+zU
+pL
+pL
+pL
+pL
+pL
+Fl
+Ji
+Ji
+Ji
+bT
+Ji
+pL
+Ji
+Ji
+RD
+Ji
+Ji
+Ji
+Ji
+jG
+Oi
+pL
+Ji
+Ji
+Ji
+Ji
+pL
+Ji
+Ji
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+pL
+pL
+pL
+"}
+(22,1,1) = {"
+zn
+zn
+vQ
+dT
+zU
+zU
+Dh
+Yi
+zU
+yE
+vQ
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+yE
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+vQ
+yE
+LK
+zU
+Zp
+Zp
+Zp
+Ip
+zU
+qU
+zU
+zU
+ef
+zU
+zU
+zU
+ef
+vQ
+zU
+pL
+pL
+Ji
+Ji
+aE
+Ji
+Ji
+Ji
+pL
+Ji
+Ji
+RD
+Ji
+Ji
+Ji
+Ji
+jG
+Oi
+pL
+Kl
+TC
+La
+Ji
+Be
+Ji
+Ji
+pL
+pL
+pL
+pL
+RD
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(23,1,1) = {"
+zn
+zn
+zU
+dT
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+dT
+dT
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+Bs
+Zp
+Zp
+LK
+Zp
+Zp
+zU
+Tn
+Zp
+Zp
+LK
+yE
+Zp
+Yi
+zU
+zU
+vQ
+Yi
+zU
+zU
+zU
+zU
+pL
+pL
+Ji
+FQ
+Ji
+JG
+Ji
+Ji
+pL
+Ji
+Ji
+pL
+jG
+jG
+jG
+jG
+jG
+jG
+pL
+Ct
+tS
+Ji
+Ji
+Be
+MM
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+pL
+pL
+"}
+(24,1,1) = {"
+zn
+Dh
+zU
+zU
+qU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+vQ
+yE
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+yE
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+PY
+PY
+PY
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+dT
+dT
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Tn
+Zp
+qU
+zU
+zU
+Yi
+zU
+vQ
+zU
+zU
+Wk
+Yi
+zU
+zU
+zU
+Yi
+pL
+pL
+pL
+Ji
+lC
+Om
+Ji
+Ji
+Xn
+pL
+Ji
+Ji
+pL
+jG
+jG
+hA
+wJ
+jG
+UG
+pL
+ga
+Pv
+xH
+bY
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+MM
+Ji
+pL
+pL
+pL
+"}
+(25,1,1) = {"
+zn
+LK
+zU
+zU
+Zp
+zU
+zU
+zU
+Yi
+yE
+vQ
+Yi
+yE
+zU
+zU
+Dh
+vQ
+yE
+Yi
+zU
+zU
+zJ
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+Yi
+zU
+zU
+vQ
+Yi
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+PY
+VQ
+PY
+Yi
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+Zp
+Zp
+TX
+zU
+Zp
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+pL
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+RD
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+"}
+(26,1,1) = {"
+zn
+Zp
+zU
+zU
+zU
+zU
+ef
+yE
+Yi
+zU
+zU
+Jj
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zJ
+zJ
+zJ
+mX
+zJ
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+PY
+PY
+PY
+zU
+zU
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+ef
+Kp
+zU
+zU
+zU
+Yi
+yE
+zU
+Zp
+WW
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+lB
+pL
+pL
+pL
+pL
+RD
+RD
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+JJ
+pL
+Lk
+pL
+pL
+um
+um
+um
+um
+um
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+"}
+(27,1,1) = {"
+zn
+Zp
+zU
+TF
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+zJ
+Lb
+wP
+wP
+es
+Ql
+zJ
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+cq
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+dT
+dT
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Zp
+Zp
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+zU
+zU
+Zn
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+Qz
+Ji
+Ji
+Ji
+Ji
+LM
+pL
+NZ
+pL
+NZ
+pL
+pL
+sU
+Xd
+um
+um
+Ls
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+"}
+(28,1,1) = {"
+zn
+qe
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+yE
+yE
+zU
+Yi
+zU
+yE
+zJ
+xS
+xU
+ok
+wP
+wP
+kj
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+yE
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+Zp
+Zp
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+ef
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zn
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+Wd
+Ji
+Ji
+kF
+Ji
+Ji
+NZ
+Ji
+Ji
+Ji
+pL
+pL
+um
+um
+um
+um
+um
+pL
+pL
+xn
+vO
+Ji
+Ji
+vO
+xn
+pL
+"}
+(29,1,1) = {"
+zn
+vQ
+zU
+Yi
+gm
+zU
+ef
+zU
+vQ
+vQ
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+zJ
+KV
+wP
+wP
+xU
+OX
+zJ
+zU
+zU
+zU
+zU
+Yi
+vQ
+Yi
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+Yi
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+Yi
+zU
+Zp
+Zp
+ef
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+lB
+pL
+pL
+pL
+pL
+RD
+RD
+pL
+pL
+pL
+pL
+pL
+pL
+lI
+Ji
+rD
+rD
+Ji
+Ji
+pL
+NZ
+pL
+NZ
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+xn
+vO
+Ji
+Ji
+vO
+xn
+pL
+"}
+(30,1,1) = {"
+zJ
+qk
+eA
+zJ
+gE
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+ef
+zJ
+pq
+wP
+wP
+Sy
+Sy
+eA
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+Zp
+Zp
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+pL
+pL
+pL
+bs
+iK
+Ol
+Ji
+kc
+Ji
+pL
+pL
+pL
+pL
+zv
+Ji
+Ji
+Ji
+Ji
+lz
+pL
+hV
+pL
+dM
+pL
+lW
+lW
+lW
+lW
+lW
+lW
+lW
+pL
+xn
+vO
+Ji
+Ji
+vO
+xn
+pL
+"}
+(31,1,1) = {"
+zJ
+hR
+wP
+wP
+qk
+Yi
+zU
+zU
+vQ
+yE
+zU
+vQ
+hp
+zU
+zU
+zU
+zU
+Yi
+zU
+zJ
+wP
+wP
+wP
+IM
+wP
+zJ
+xQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+yE
+zU
+zU
+yE
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+Zp
+Zp
+zU
+zU
+vQ
+Wk
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+ef
+pL
+pL
+pL
+jG
+jG
+oL
+Mm
+Mm
+Mm
+pL
+Eo
+ON
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+lW
+ui
+Wq
+Wq
+Wq
+rJ
+lW
+pL
+xn
+IC
+Ji
+Ji
+vO
+xn
+pL
+"}
+(32,1,1) = {"
+zJ
+xU
+wP
+wP
+Zb
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+Dh
+zU
+yE
+zJ
+mH
+Ei
+xU
+wP
+oo
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+dT
+dT
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+zU
+Yi
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+pL
+pL
+jG
+cj
+oL
+zC
+zC
+zC
+pL
+IA
+rY
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+vB
+vB
+AF
+AF
+lW
+Wq
+BF
+BF
+BF
+Wq
+lW
+pL
+xn
+vO
+Ji
+Ji
+IC
+xn
+pL
+"}
+(33,1,1) = {"
+zJ
+Mo
+iR
+wP
+HK
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+zU
+dT
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+yE
+zU
+zJ
+IQ
+fm
+GF
+zJ
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+Zp
+Zp
+ef
+yE
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+pL
+pL
+jG
+jG
+oL
+py
+py
+py
+pL
+Po
+Ok
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+cv
+IL
+QJ
+IL
+zy
+IL
+qB
+Wq
+BF
+mI
+BF
+Wq
+lW
+pL
+xn
+vO
+Ji
+Ji
+vO
+xn
+pL
+"}
+(34,1,1) = {"
+zJ
+Rj
+wP
+wP
+gE
+zU
+vQ
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+vQ
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zJ
+Mv
+NV
+NV
+zJ
+CM
+CM
+lA
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+zU
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+pL
+pL
+pL
+pL
+pL
+RA
+MP
+tB
+Ji
+Ji
+Ji
+ue
+Io
+Io
+ue
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+vB
+vB
+AF
+AF
+lW
+Wq
+BF
+BF
+BF
+Wq
+lW
+pL
+xn
+vO
+Ji
+Ji
+vO
+xn
+pL
+"}
+(35,1,1) = {"
+zJ
+zJ
+zJ
+zJ
+zJ
+Dh
+zU
+Yi
+yE
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+Yi
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+vQ
+zU
+zU
+ef
+zU
+Yi
+yE
+zU
+zU
+ef
+vQ
+Yi
+zU
+zU
+ef
+zU
+lA
+zJ
+xK
+wa
+NV
+zJ
+CM
+CM
+zJ
+zJ
+zJ
+vQ
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Zp
+Zp
+zU
+Dh
+Yi
+yE
+zU
+zU
+zU
+zU
+qO
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+lM
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+GT
+GT
+ZK
+pL
+pL
+pL
+pL
+pL
+lW
+XD
+Wq
+Wq
+Wq
+Fu
+lW
+pL
+xn
+vO
+Ji
+Ji
+vO
+xn
+pL
+"}
+(36,1,1) = {"
+zn
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Xf
+Xf
+CM
+CM
+CM
+CM
+NV
+yH
+zJ
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+yE
+Zp
+Zp
+zU
+zU
+zU
+zU
+vQ
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+GT
+ik
+GT
+GT
+rI
+Yj
+pL
+pL
+lW
+lW
+lW
+lW
+lW
+lW
+lW
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+"}
+(37,1,1) = {"
+zn
+yE
+zU
+zU
+Yi
+zU
+zU
+zU
+vQ
+zU
+yE
+vQ
+zU
+vQ
+yE
+zU
+zU
+zU
+zU
+Dh
+yE
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+vQ
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+yr
+CM
+CM
+CM
+CM
+CM
+Du
+UA
+Rl
+zJ
+zU
+Dh
+vQ
+zU
+zU
+Kp
+zU
+zU
+ef
+zU
+Zp
+Zp
+Zp
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+pL
+pL
+gO
+fo
+Ji
+gO
+pL
+rb
+rb
+rb
+rb
+pL
+Ji
+Ji
+ue
+GT
+GT
+GT
+GT
+rI
+rI
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+ue
+Ji
+Ji
+pL
+pL
+pL
+"}
+(38,1,1) = {"
+zn
+vQ
+vQ
+yE
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+yE
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+ef
+zJ
+jW
+vJ
+Rm
+zJ
+PS
+dK
+re
+zU
+CM
+CM
+CM
+BC
+CM
+CM
+Du
+Cp
+NV
+zJ
+zU
+zU
+yE
+zU
+yE
+zU
+ef
+zU
+zU
+zU
+Zp
+Zp
+Zp
+vQ
+zU
+zU
+zU
+zU
+Wk
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+pL
+pL
+Tb
+Ji
+Ji
+Tb
+pL
+rb
+cU
+Vj
+iI
+pL
+Ji
+Ji
+pL
+GT
+GT
+GT
+rI
+PG
+rI
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+hn
+FA
+pL
+Ji
+Ji
+pL
+pL
+pL
+"}
+(39,1,1) = {"
+zn
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+Az
+vQ
+zU
+zU
+yE
+zU
+zU
+zU
+ef
+Yi
+yE
+zU
+zU
+zU
+vQ
+zU
+ef
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Jt
+Pn
+vJ
+Tf
+zJ
+Ne
+NV
+re
+zU
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+NV
+aC
+zJ
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+zU
+Zp
+Zp
+Zp
+zU
+Yi
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+Yi
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+pL
+rb
+ra
+MV
+YN
+ch
+Ji
+Ji
+pL
+ug
+GT
+rI
+Qp
+rI
+rI
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+"}
+(40,1,1) = {"
+zn
+zU
+yE
+zU
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+ef
+Yi
+zU
+vQ
+zU
+zU
+yE
+vQ
+zU
+zU
+zU
+Dh
+zU
+vQ
+yE
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+Yi
+Jt
+Oq
+gj
+gj
+Gs
+NV
+Ps
+re
+zU
+CM
+Xp
+CM
+CM
+CM
+zU
+zU
+zJ
+zJ
+zJ
+zU
+Dh
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+ef
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+pL
+rb
+YG
+lO
+IV
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+MM
+Ji
+Ji
+Ji
+Ji
+pL
+pL
+pL
+"}
+(41,1,1) = {"
+zn
+ef
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+YH
+zU
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zJ
+zr
+vj
+GE
+zJ
+NV
+NV
+KM
+zU
+CM
+CM
+CM
+CM
+CM
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+Dh
+zU
+Yi
+WW
+Zp
+Bs
+yE
+zU
+zU
+vQ
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+Yi
+yE
+zU
+zU
+ef
+pL
+pL
+gO
+Ji
+Ji
+gO
+pL
+rb
+rb
+rb
+rb
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+pL
+pL
+"}
+(42,1,1) = {"
+zn
+yE
+zU
+zU
+zU
+yE
+zU
+zU
+Yi
+Cn
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+Dh
+vQ
+Yi
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+Gs
+zJ
+zU
+CM
+CM
+CM
+CM
+Xp
+zU
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+zU
+zU
+zU
+yE
+zU
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+pL
+pL
+pL
+pL
+RD
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+jG
+XT
+jG
+jG
+XT
+jG
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(43,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+yE
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+ef
+Yi
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+ef
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+CM
+CM
+CM
+CM
+BC
+CM
+CM
+CM
+zU
+zU
+zU
+zJ
+yQ
+NV
+oN
+NV
+zJ
+zU
+ef
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+Dh
+zU
+yE
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Dh
+zU
+zU
+pL
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+cy
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+QR
+Ji
+pX
+pL
+Ji
+Ji
+pL
+vB
+vB
+vB
+vB
+vB
+vB
+"}
+(44,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+vQ
+yE
+zU
+zU
+zU
+Dh
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+zU
+ef
+zU
+vQ
+zJ
+zJ
+zJ
+zU
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+zU
+zU
+NV
+NV
+NV
+NV
+zJ
+zU
+zU
+zU
+zU
+Dh
+zU
+Zp
+Zp
+Zp
+zU
+zU
+vQ
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+pL
+pL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+IZ
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+Ji
+xD
+xf
+pL
+Ji
+Ji
+pL
+vB
+hT
+iG
+cW
+NY
+vB
+"}
+(45,1,1) = {"
+zn
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+yE
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+vQ
+zU
+yE
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+zU
+ef
+zJ
+BN
+Gs
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+NV
+NV
+zu
+NV
+zJ
+zU
+Dh
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+zU
+Dh
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+ef
+vQ
+Yi
+zU
+zU
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+jG
+XT
+jG
+jG
+XT
+jG
+pL
+Ji
+Ji
+ue
+jd
+TI
+Ji
+ue
+Ji
+Ji
+QJ
+IL
+IL
+IL
+yJ
+bR
+vB
+"}
+(46,1,1) = {"
+zn
+zU
+zU
+vQ
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+Yi
+zU
+vQ
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+Dh
+vQ
+Yi
+yE
+zU
+zU
+yE
+Yi
+zU
+zU
+vQ
+zU
+zU
+vQ
+zU
+Yi
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+zU
+zJ
+zJ
+zJ
+dT
+dT
+CM
+CM
+CM
+CM
+CM
+CM
+yr
+dT
+zU
+zU
+NV
+NV
+NV
+NV
+zJ
+zU
+zU
+zU
+yE
+Yi
+zU
+Zp
+Zp
+Zp
+Zp
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+yE
+pL
+pL
+pL
+Ji
+Ji
+pL
+Bg
+Bg
+YE
+YE
+YE
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+Et
+qK
+Ji
+pL
+Ji
+Ji
+pL
+vB
+hT
+iG
+cW
+NY
+vB
+"}
+(47,1,1) = {"
+zn
+yE
+zU
+zU
+zU
+vQ
+yE
+vQ
+zU
+zU
+zU
+Dh
+yE
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+Yi
+zU
+zU
+zU
+Dh
+vQ
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+zU
+zU
+CM
+zU
+zU
+lA
+zU
+zU
+dT
+zU
+zJ
+XX
+NV
+oC
+NV
+zJ
+zU
+ef
+Yi
+zU
+zU
+zU
+Zp
+Zp
+WW
+Zp
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+pL
+pL
+pL
+Ji
+Ji
+RD
+Ji
+hM
+Bg
+YE
+iS
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+yU
+jy
+ZQ
+pL
+Ji
+Ji
+pL
+vB
+vB
+vB
+vB
+vB
+vB
+"}
+(48,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+dT
+dT
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zJ
+zJ
+LD
+zJ
+Gs
+zJ
+LD
+zJ
+zJ
+zU
+dT
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+vQ
+zU
+zU
+ef
+zU
+Zp
+Zp
+Zp
+Zp
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+vQ
+Yi
+pL
+pL
+pL
+Ji
+Ji
+pL
+Ji
+Ji
+Bg
+YE
+YE
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(49,1,1) = {"
+zn
+vQ
+zU
+vQ
+zU
+zU
+zU
+Yi
+yE
+zU
+ef
+zU
+zU
+ef
+yE
+zU
+zU
+Yi
+zU
+yE
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+Yi
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+Yi
+zJ
+BI
+NV
+NV
+NV
+NV
+NV
+aX
+zJ
+zU
+dT
+dT
+zU
+zU
+Yi
+zU
+yE
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+Yi
+zU
+zU
+ef
+yE
+zU
+zU
+pL
+pL
+pL
+RD
+pL
+pL
+Ji
+Bg
+Bg
+YE
+YE
+pL
+pL
+pL
+RD
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+Ji
+Ji
+pL
+rZ
+jG
+xe
+XO
+ac
+pL
+"}
+(50,1,1) = {"
+zn
+yE
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+Yi
+zU
+zU
+zU
+zU
+ef
+vQ
+vQ
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+Yi
+zU
+ef
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+vQ
+zU
+zU
+Yi
+zU
+zU
+zJ
+NE
+NV
+NV
+NV
+NV
+NV
+wi
+zJ
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+Ru
+Zp
+Zp
+Zp
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+ef
+pL
+Qx
+Vk
+Vk
+Xi
+pL
+Bg
+Bg
+Fj
+Bg
+YE
+pL
+UZ
+Ji
+Ji
+Ji
+Li
+jG
+pL
+is
+QL
+QL
+QL
+QL
+QL
+pL
+JD
+Ji
+pL
+Ji
+Ji
+pL
+jG
+jG
+jG
+jG
+jQ
+pL
+"}
+(51,1,1) = {"
+zn
+zU
+zU
+ef
+zU
+zU
+yE
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+vQ
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+LD
+qS
+NV
+NV
+NV
+NV
+NV
+kx
+LD
+zU
+dT
+dT
+dT
+dT
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+Zp
+Zp
+Zp
+Dh
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+pL
+MN
+rL
+rL
+XS
+pL
+hM
+Bg
+Bg
+Bg
+yM
+pL
+hA
+Ji
+Ji
+Ji
+Ji
+wJ
+pL
+jG
+EN
+EN
+QL
+QL
+QL
+Ji
+Ji
+Ji
+pL
+Ji
+Ji
+RD
+jG
+Xx
+rh
+AZ
+jG
+pL
+"}
+(52,1,1) = {"
+zn
+zU
+Dh
+zU
+yE
+vQ
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+ak
+nb
+nb
+jk
+jk
+uY
+zU
+zU
+vQ
+zU
+zU
+yE
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+vQ
+Yi
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+Dh
+zU
+yE
+LD
+qJ
+NV
+re
+sR
+re
+pg
+Qm
+LD
+zU
+zU
+dT
+dT
+dT
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+Yi
+zU
+pL
+MN
+hb
+rL
+XS
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+wJ
+Ji
+Sr
+Ji
+Ji
+AD
+pL
+jG
+QL
+EN
+EN
+EN
+EN
+Ji
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+jG
+nc
+ZR
+SD
+Cs
+pL
+"}
+(53,1,1) = {"
+zn
+zU
+vQ
+yE
+zU
+zU
+Yi
+zU
+vQ
+zU
+zU
+zU
+zU
+Yi
+nb
+nb
+nb
+jk
+jk
+jk
+jk
+jk
+Dh
+zU
+zU
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+dT
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zJ
+Kv
+NV
+hm
+NV
+NV
+NV
+Rl
+zJ
+zU
+zU
+zU
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+zU
+zU
+zU
+Yi
+zU
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+pL
+eU
+HG
+HG
+dz
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+jG
+jG
+Cs
+Xh
+jG
+jG
+pL
+GN
+QL
+QL
+QL
+QL
+QL
+pL
+Ji
+Ji
+Ji
+Ji
+Ji
+pL
+JL
+nc
+Vt
+SD
+wJ
+pL
+"}
+(54,1,1) = {"
+zn
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+nb
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+zp
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+ef
+Yi
+zJ
+KM
+NV
+NV
+fb
+NV
+Fk
+pe
+zJ
+zU
+Dh
+zU
+zU
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+wP
+wP
+wP
+wP
+wP
+wP
+wP
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+ef
+yE
+zU
+zU
+ef
+yE
+zU
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+pL
+"}
+(55,1,1) = {"
+zn
+Yi
+zU
+zU
+zU
+zU
+zU
+yE
+Yi
+zU
+zU
+zU
+ef
+nb
+nb
+jk
+jk
+jk
+jk
+Bt
+jk
+jk
+jk
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Kp
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zJ
+zJ
+Gs
+zJ
+zJ
+Gs
+zJ
+zJ
+zJ
+zU
+zU
+zU
+Yi
+zU
+zU
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+dT
+wP
+wP
+wP
+wP
+wP
+wP
+wP
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+Yi
+zU
+zU
+zU
+vQ
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+zn
+"}
+(56,1,1) = {"
+zn
+vQ
+yE
+zU
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+vQ
+nb
+nb
+nb
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Dh
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zJ
+gl
+NV
+zJ
+Ig
+NV
+XG
+LT
+zJ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+dT
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+yE
+zU
+Yi
+zU
+zU
+ef
+Yi
+zU
+zU
+ef
+vQ
+zU
+Yi
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zn
+"}
+(57,1,1) = {"
+zn
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+nb
+nb
+nb
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+fS
+fS
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zJ
+kO
+NV
+zJ
+ec
+NV
+NV
+NV
+Jt
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+dT
+dT
+dT
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+Yi
+zU
+zU
+hp
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+vQ
+Yi
+zU
+zU
+zU
+zn
+"}
+(58,1,1) = {"
+zn
+zU
+zU
+zU
+ef
+vQ
+zU
+Yi
+zU
+zU
+zU
+EH
+nb
+nb
+jk
+PF
+ax
+By
+fS
+fS
+fS
+jk
+jk
+fS
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+Nj
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+vQ
+Yi
+zJ
+zl
+Mv
+zJ
+Kk
+Kz
+WT
+re
+zJ
+zU
+Yi
+zU
+vQ
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zn
+"}
+(59,1,1) = {"
+zn
+Yi
+zU
+zU
+Yi
+zU
+yE
+vQ
+zU
+zU
+zU
+Dh
+nb
+nb
+jk
+jk
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+yE
+zU
+zU
+ef
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+Yi
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+xj
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+Yi
+zn
+"}
+(60,1,1) = {"
+zn
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+as
+nb
+nb
+nb
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+Vf
+fS
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+Nj
+Yi
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zn
+"}
+(61,1,1) = {"
+zn
+vQ
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+yE
+zU
+ef
+nb
+nb
+nb
+nb
+nb
+fS
+fS
+fS
+bV
+fS
+Vf
+vQ
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+ef
+yE
+zU
+zU
+Yi
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+yE
+zU
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+xj
+yE
+zU
+zU
+vQ
+zU
+zU
+Yi
+zU
+zU
+vQ
+zn
+"}
+(62,1,1) = {"
+zn
+ef
+zU
+zU
+yE
+zU
+zU
+zU
+ef
+zU
+zU
+vQ
+zp
+nb
+nb
+nb
+nb
+nb
+fS
+fS
+Vf
+Vf
+fS
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+Yi
+Nj
+zU
+Yi
+zU
+zU
+zU
+Yi
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+dT
+dT
+Zp
+WW
+Zp
+Zp
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+vQ
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zn
+"}
+(63,1,1) = {"
+zn
+zU
+zU
+ef
+zU
+Yi
+zU
+yE
+vQ
+zU
+zU
+zU
+Dh
+pf
+nb
+nb
+ko
+nb
+fS
+Vf
+Vf
+Dh
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Kp
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+zn
+"}
+(64,1,1) = {"
+zn
+yE
+Yi
+zU
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+ef
+nb
+nb
+nb
+nb
+nb
+fS
+KF
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+Nj
+Nj
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+vQ
+zU
+Yi
+zU
+zU
+vQ
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+dT
+TA
+Zp
+Zp
+Zp
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+zU
+zU
+yE
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+zn
+"}
+(65,1,1) = {"
+zn
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+Yi
+vQ
+zU
+zU
+zU
+Dh
+US
+nb
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Nj
+Nj
+LB
+Nj
+Nj
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Yi
+zU
+yE
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+ef
+vQ
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+vQ
+zU
+yE
+zU
+Yi
+yE
+ef
+zn
+"}
+(66,1,1) = {"
+zn
+zU
+zU
+Dh
+zU
+zU
+Ns
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+rd
+Nj
+vv
+Nj
+Nj
+Nj
+zU
+zU
+Kp
+Yi
+zU
+ef
+zU
+zU
+zU
+zU
+Kp
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+yE
+yE
+zU
+zU
+qZ
+zA
+qZ
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zn
+"}
+(67,1,1) = {"
+zn
+zU
+zU
+vQ
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+Yi
+zU
+vQ
+zU
+yE
+yE
+zU
+zU
+ef
+vQ
+zU
+zU
+ef
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+Dh
+vQ
+zU
+zU
+ef
+Nj
+Nj
+Nj
+Nj
+Nj
+Nj
+zU
+ef
+yE
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zA
+zA
+zA
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zn
+"}
+(68,1,1) = {"
+zn
+zU
+ef
+yE
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+yE
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zs
+zU
+zU
+Nj
+cB
+Nj
+Nj
+DZ
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+nL
+ST
+AB
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+zU
+zn
+"}
+(69,1,1) = {"
+zn
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+yE
+vQ
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Nj
+Nj
+Nj
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+yE
+Yi
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+Zp
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Ur
+zU
+zU
+zU
+Dh
+yE
+Yi
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+yE
+zA
+zA
+zA
+zU
+vQ
+xj
+zU
+zU
+zU
+zU
+Yi
+zn
+"}
+(70,1,1) = {"
+zn
+yE
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+vQ
+zU
+zU
+vQ
+yE
+zU
+zU
+ef
+Nj
+Nj
+Nj
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+Zp
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+ef
+zU
+qZ
+zA
+qZ
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zn
+"}
+(71,1,1) = {"
+zn
+Yi
+zU
+zU
+vQ
+yE
+zU
+zU
+Yi
+vQ
+zU
+zU
+Yi
+zU
+zU
+ef
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+vQ
+zU
+UQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+vQ
+zU
+zU
+vQ
+zU
+yE
+zU
+Kp
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+rl
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+zn
+"}
+(72,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+zU
+ef
+yE
+yE
+zU
+vQ
+zU
+zU
+vQ
+zU
+zU
+vQ
+yE
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+Ns
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+Zp
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+yE
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+yE
+vQ
+zU
+yE
+Yi
+zn
+"}
+(73,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+yE
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+WW
+Zp
+Zp
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zn
+"}
+(74,1,1) = {"
+zn
+Dh
+Yi
+nr
+zU
+Yi
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+vQ
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+ef
+zU
+vQ
+Yi
+zU
+zU
+ef
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+yE
+zU
+Yi
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+yE
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+OE
+zU
+zU
+zU
+zU
+Dh
+zn
+"}
+(75,1,1) = {"
+zn
+zU
+zU
+Lt
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+ef
+Az
+Kp
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+Yi
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Xc
+Zp
+Zp
+yE
+Yi
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+vQ
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zn
+"}
+(76,1,1) = {"
+zn
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+ef
+ef
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+vQ
+Yi
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+vQ
+Yi
+zn
+"}
+(77,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+CM
+CM
+Un
+CM
+yk
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+yE
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+zU
+zU
+Yi
+zU
+vQ
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zJ
+EJ
+II
+II
+II
+dP
+zJ
+vQ
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zn
+"}
+(78,1,1) = {"
+zn
+zU
+yE
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+vQ
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+Yi
+zJ
+Fx
+II
+II
+II
+zP
+zJ
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+yE
+zU
+Yi
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+ef
+zU
+Yi
+zU
+zU
+vQ
+zn
+"}
+(79,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+yE
+Yi
+zU
+zU
+zU
+yE
+Yi
+zU
+zU
+EF
+CM
+xY
+lV
+lV
+lV
+vS
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+zU
+zU
+Dh
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+qD
+Uv
+Uv
+Uv
+zJ
+zJ
+RL
+VN
+II
+II
+zJ
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+UC
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+zn
+"}
+(80,1,1) = {"
+zn
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+Un
+CM
+lV
+lV
+Vm
+lV
+lV
+Un
+CM
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+Yi
+yE
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+Jj
+zU
+zU
+ef
+zU
+Yi
+zU
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+Uv
+Uv
+Uv
+wv
+wW
+yG
+zJ
+zJ
+zJ
+kd
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+zU
+zn
+"}
+(81,1,1) = {"
+zn
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+CM
+lV
+lV
+RZ
+hK
+oz
+lV
+lV
+CM
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+as
+as
+as
+as
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+Uv
+qT
+Jc
+Jc
+xc
+yG
+II
+RU
+VT
+II
+RX
+zJ
+vQ
+yE
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+yE
+zU
+zn
+"}
+(82,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+CM
+CM
+lV
+ji
+hK
+hK
+hK
+eT
+Cb
+CM
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+ef
+Yi
+zU
+Yi
+yE
+zU
+zU
+as
+as
+as
+as
+as
+as
+as
+as
+as
+zU
+zU
+zU
+yE
+vQ
+zU
+zU
+Yi
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+dT
+dT
+Zp
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+ef
+zU
+qc
+sh
+sX
+Jc
+yn
+CA
+II
+TY
+II
+II
+OY
+zJ
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+zU
+zU
+ef
+zU
+Yi
+zn
+"}
+(83,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+CM
+CM
+CM
+CM
+lV
+lV
+pZ
+hK
+oz
+lV
+lV
+CM
+CM
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+Dh
+Kp
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+as
+as
+ZM
+ZM
+ZM
+ZM
+ZM
+ZM
+ZM
+Bq
+as
+as
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+zU
+vQ
+zU
+zU
+zU
+Dh
+vQ
+zU
+Jj
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+yE
+qi
+sm
+tj
+Jc
+yt
+Ej
+II
+Od
+II
+II
+il
+zJ
+zU
+zU
+Dh
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+vQ
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+zn
+"}
+(84,1,1) = {"
+zn
+Dh
+vQ
+yE
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+CM
+CM
+Un
+CM
+CM
+lV
+lV
+xh
+lV
+lV
+xY
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+ef
+wB
+as
+lu
+as
+ZM
+af
+wP
+ct
+El
+xv
+ZM
+as
+as
+as
+as
+zU
+zU
+Dh
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+zU
+zU
+ef
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Uv
+sT
+vs
+Jc
+yG
+yG
+Od
+II
+II
+BJ
+Uq
+zJ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zn
+"}
+(85,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+CM
+CM
+xY
+CM
+CM
+CM
+CM
+CM
+lV
+lV
+lV
+CM
+CM
+Un
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+ef
+Yi
+vQ
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+as
+as
+as
+as
+ZM
+nX
+wP
+pF
+wP
+wP
+Wv
+as
+Fd
+as
+as
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+ef
+Uv
+Uv
+Uv
+pU
+AU
+yG
+yG
+II
+Xu
+Yl
+bU
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Yi
+zU
+zn
+"}
+(86,1,1) = {"
+zn
+yE
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+EF
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+ef
+yE
+zU
+zU
+Yi
+zU
+zU
+zU
+as
+as
+as
+as
+lA
+ZM
+Lb
+wP
+hg
+wP
+KO
+Wv
+as
+as
+FF
+as
+zU
+zU
+ef
+Yi
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+gR
+Uv
+Uv
+Uv
+yG
+OM
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+vQ
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+yE
+zU
+Yi
+zn
+"}
+(87,1,1) = {"
+zn
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+jm
+CM
+CM
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+zU
+yE
+zU
+as
+ZM
+ZM
+ZM
+ZM
+ZM
+wP
+wP
+wP
+wP
+wP
+Wv
+IT
+as
+Mx
+as
+Yi
+zU
+zU
+zU
+vQ
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+vQ
+zU
+zU
+zU
+zU
+ef
+qO
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+yE
+zU
+vQ
+zU
+zU
+ef
+zU
+yE
+vQ
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+zU
+Yi
+zU
+zn
+"}
+(88,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+CM
+CM
+CM
+CM
+CM
+CM
+Un
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+ef
+Yi
+zU
+as
+as
+ZM
+Ym
+rs
+wP
+ZM
+Mo
+wP
+wP
+wP
+wP
+ZM
+as
+as
+IO
+as
+zU
+zU
+zU
+zU
+Dh
+Yi
+Yi
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zn
+"}
+(89,1,1) = {"
+zn
+yE
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+CM
+Un
+CM
+CM
+CM
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Yi
+zU
+zU
+vQ
+zU
+as
+as
+Wv
+KO
+wP
+wP
+Tt
+wP
+LR
+Rv
+qo
+wP
+Tt
+as
+as
+as
+as
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zn
+"}
+(90,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+CM
+CM
+CM
+xY
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+vQ
+Yi
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+ef
+zU
+as
+as
+ZM
+zt
+Ve
+fC
+ZM
+Ib
+Rb
+wP
+wP
+wP
+ZM
+rA
+Jm
+lu
+as
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+yE
+Az
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+vQ
+zU
+zU
+zn
+"}
+(91,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+CM
+CM
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+as
+ZM
+ZM
+ZM
+ZM
+ZM
+ZM
+ZM
+Cy
+ZM
+ZM
+ZM
+as
+OB
+as
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Ru
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+yE
+vQ
+zU
+zU
+zU
+ef
+yE
+zU
+zU
+zn
+zn
+"}
+(92,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+as
+as
+as
+as
+as
+as
+as
+ZM
+ZM
+ZM
+as
+as
+as
+as
+as
+zU
+Yi
+zU
+sn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+zU
+zU
+aN
+dp
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+ef
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zn
+zn
+zn
+"}
+(93,1,1) = {"
+zn
+Dh
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+yE
+zU
+Yi
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+as
+as
+as
+QU
+as
+as
+IO
+as
+as
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+ZE
+zU
+zU
+zU
+Dh
+vQ
+zU
+Yi
+zU
+vQ
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+vQ
+Yi
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+vQ
+yE
+zU
+vQ
+zU
+zU
+Yi
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+vQ
+zU
+zn
+zn
+zn
+zn
+"}
+(94,1,1) = {"
+zn
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+IO
+as
+as
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+ZM
+ZM
+ZM
+ZM
+ZM
+zU
+Yi
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+vQ
+zU
+ef
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(95,1,1) = {"
+zn
+ef
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+yE
+Jj
+yE
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+yE
+vQ
+zU
+zU
+zU
+zU
+Dh
+Yi
+yE
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+zU
+dT
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+bk
+dB
+ZM
+fK
+hq
+mm
+ZM
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+ef
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(96,1,1) = {"
+zn
+vQ
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+eA
+wP
+wP
+wP
+ZM
+zU
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+Yi
+yE
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(97,1,1) = {"
+zn
+ef
+hp
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+vQ
+zU
+zU
+ef
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+Yi
+yE
+vQ
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+WW
+Zp
+Zp
+Zp
+zU
+zU
+ZM
+Mo
+wP
+wP
+ZM
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+Yi
+yE
+zU
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(98,1,1) = {"
+zn
+zU
+Dh
+Yi
+Jj
+vQ
+yE
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+Wv
+wP
+wP
+wP
+ZM
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+Yi
+vQ
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(99,1,1) = {"
+zn
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+ZM
+hi
+ld
+pl
+ZM
+Yi
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(100,1,1) = {"
+zn
+vQ
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+ZM
+ZM
+ZM
+ZM
+ZM
+zU
+yE
+vQ
+vQ
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+ZS
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+OC
+iW
+iW
+iW
+iW
+mK
+nk
+tF
+ZU
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+ly
+ly
+ly
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(101,1,1) = {"
+zn
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+zU
+yE
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+ef
+zU
+zU
+yE
+vQ
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Uk
+nk
+EB
+tG
+Fv
+tG
+tG
+XM
+nk
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+ly
+Jz
+ly
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(102,1,1) = {"
+zn
+zU
+Dh
+zU
+Yi
+vQ
+zU
+zU
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+Zp
+Bs
+Zp
+Zp
+Zp
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+EB
+iW
+iW
+iW
+tG
+iW
+iW
+iW
+ly
+Jz
+ly
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(103,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+zU
+yE
+zJ
+zJ
+vP
+Mv
+KJ
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+ez
+Zp
+Zp
+Yi
+zU
+Zp
+Zp
+Zp
+WW
+Zp
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+Yi
+vQ
+zU
+zU
+zU
+yE
+zU
+zU
+Yi
+zU
+zU
+zn
+tG
+tG
+tG
+tG
+tG
+pT
+tG
+tG
+tG
+tG
+iW
+iW
+tG
+tG
+iW
+ly
+ly
+tG
+ly
+ly
+iW
+iW
+iW
+iW
+iW
+"}
+(104,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+Yi
+zJ
+zJ
+pB
+NV
+NV
+NV
+oN
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Dh
+yE
+Zp
+Zp
+Zp
+zU
+LK
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+zU
+Dh
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+yE
+zU
+zU
+zU
+Dh
+zU
+Dh
+pY
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+vQ
+zU
+zU
+zU
+ef
+zU
+yE
+zn
+zn
+iW
+iW
+Uk
+tG
+tG
+nR
+tG
+tG
+tG
+Px
+iW
+iW
+iW
+tG
+iW
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(105,1,1) = {"
+zn
+zU
+zU
+ef
+yE
+zU
+zJ
+my
+NV
+NV
+Ui
+NV
+NV
+NV
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+HB
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+vQ
+yE
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Yi
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+ef
+zU
+Yi
+zU
+zU
+ef
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+Yi
+zU
+vQ
+zn
+zn
+iW
+iW
+iW
+nk
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(106,1,1) = {"
+zn
+zU
+Dh
+Yi
+vQ
+zU
+zJ
+PW
+NV
+Ui
+QT
+Ui
+NV
+NV
+Vc
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+vQ
+LK
+Zp
+Zp
+Zp
+wX
+wX
+wX
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+Dh
+vQ
+yE
+vQ
+zU
+zU
+vQ
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+vQ
+zU
+zU
+zU
+Yi
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+yE
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+vQ
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zn
+zn
+zn
+iW
+iW
+iW
+mK
+tG
+tG
+tG
+SM
+Fv
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(107,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+yE
+zJ
+FM
+NV
+NV
+Ui
+NV
+NV
+Pf
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+Zp
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+Bs
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+WW
+Zp
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+Zp
+Zp
+Zp
+Zp
+Dh
+vQ
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+zU
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+ZU
+tG
+tG
+mK
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(108,1,1) = {"
+zn
+zU
+zU
+zU
+Dh
+Yi
+zJ
+zJ
+qC
+NV
+NV
+NV
+oC
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+ek
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+yE
+Yi
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ku
+yE
+zU
+zU
+zU
+zU
+zU
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+tG
+EB
+nk
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(109,1,1) = {"
+zn
+zU
+zU
+vQ
+zU
+zU
+zU
+zJ
+zJ
+GP
+Kw
+NV
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+Zp
+Zp
+wX
+wX
+wX
+xO
+wX
+wX
+wX
+Zp
+Zp
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+yE
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+Yi
+zU
+Zp
+Zp
+Zp
+zU
+zU
+zU
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+yE
+vQ
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+"}
+(110,1,1) = {"
+zn
+zU
+ef
+zU
+zU
+zU
+Dh
+vQ
+zJ
+zJ
+zJ
+zJ
+zJ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+Zp
+ef
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+Dh
+yE
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+Yi
+yE
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+Zp
+Zp
+Zp
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+ef
+tb
+zU
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+ef
+yE
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+"}
+(111,1,1) = {"
+zn
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+Yi
+LK
+Zp
+Zp
+wX
+wX
+wX
+wX
+wX
+wX
+Zp
+Zp
+zU
+Dh
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+Dh
+zU
+zU
+ef
+yE
+zU
+Yi
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+vQ
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+zU
+vQ
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+iW
+iW
+iW
+"}
+(112,1,1) = {"
+zn
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+yE
+Yi
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+Zp
+Ru
+wX
+wX
+wX
+wX
+ez
+Zp
+zU
+Yi
+yE
+zU
+zU
+ef
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+yE
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+vQ
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Zp
+Zp
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zn
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+"}
+(113,1,1) = {"
+zn
+zU
+vQ
+yE
+zU
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+fS
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+HB
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+vQ
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+yE
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Yi
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+"}
+(114,1,1) = {"
+zn
+yE
+Yi
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+vQ
+zU
+yE
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+Dh
+Yi
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zq
+zU
+uO
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+vK
+vK
+Zp
+zU
+zU
+Dh
+zU
+ef
+Yi
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+Dh
+Yi
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+vQ
+zU
+yE
+zU
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+FD
+FD
+iW
+"}
+(115,1,1) = {"
+zn
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+vQ
+yE
+zU
+zU
+ef
+Yi
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+ef
+zU
+zU
+LK
+HB
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+vQ
+Yi
+yE
+zn
+zn
+zn
+IB
+dS
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+uO
+mJ
+zU
+zU
+zU
+Dh
+zU
+yE
+zU
+Yi
+vQ
+zU
+ef
+vQ
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+yE
+zU
+vQ
+zU
+yE
+zU
+Yi
+zU
+zU
+zU
+zU
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+iW
+"}
+(116,1,1) = {"
+zn
+zU
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+Yi
+zU
+yE
+vQ
+zU
+ef
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+YV
+uO
+uO
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+dS
+zn
+zn
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+ef
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+Dh
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+Ya
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+nH
+Ya
+iW
+FD
+FD
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+iW
+"}
+(117,1,1) = {"
+zn
+Yi
+zU
+yE
+zU
+Yi
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+vQ
+zU
+yE
+zU
+zU
+zU
+zU
+Dh
+vQ
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+sH
+IB
+IB
+zn
+zn
+zn
+zn
+zU
+vQ
+Yi
+vQ
+zU
+zU
+zU
+Dh
+Yi
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+zU
+zU
+Zp
+Zp
+as
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+zU
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+dd
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+Ay
+tG
+FD
+FD
+iW
+iW
+FD
+FD
+uZ
+FD
+iW
+"}
+(118,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+Yi
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+Ld
+uO
+uO
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+yE
+zU
+zU
+zU
+zU
+zU
+ef
+vQ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Zp
+Zp
+Zp
+as
+nb
+zU
+as
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Dh
+zU
+zU
+yE
+vQ
+zU
+yE
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+tG
+iW
+tG
+nH
+iW
+iW
+iW
+iW
+FD
+tG
+tG
+tG
+FD
+iW
+iW
+FD
+uw
+FD
+iW
+iW
+"}
+(119,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+ef
+zU
+zU
+ef
+gk
+LK
+Fc
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+nb
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+jk
+as
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+zU
+Dh
+Yi
+zU
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+nH
+tG
+tG
+nH
+iW
+iW
+tG
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+iW
+tG
+tG
+iW
+iW
+iW
+FD
+FD
+iW
+iW
+"}
+(120,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+zU
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+Xk
+uO
+uO
+uO
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+zn
+zn
+zn
+zn
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+Yi
+zU
+yE
+vQ
+zU
+jk
+Zp
+Ip
+Zp
+Ma
+Ma
+vN
+Zp
+Zp
+Tn
+nb
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zn
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+tG
+tG
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+Ya
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(121,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zU
+zU
+yE
+zU
+zU
+vQ
+zU
+yE
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+uO
+uO
+uO
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+Yi
+zU
+zU
+yE
+zU
+vQ
+zU
+Yi
+zU
+zU
+Tn
+Zp
+Zp
+Ma
+Ma
+Ma
+Ma
+Zp
+Zp
+Zp
+zU
+as
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+vQ
+zn
+iW
+iW
+iW
+Ay
+tG
+tG
+tG
+iW
+iW
+iW
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+tG
+tG
+FD
+iW
+iW
+iW
+iW
+iW
+"}
+(122,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+Ld
+uO
+uO
+gP
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+zX
+dl
+dl
+dl
+dl
+dl
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+fS
+zU
+Zp
+Zp
+Ao
+Ma
+Ma
+Ma
+Ma
+Ip
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zn
+iW
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+Bb
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+tG
+tG
+FD
+iW
+iW
+iW
+iW
+iW
+"}
+(123,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+yE
+Kj
+IB
+IB
+qr
+uO
+fT
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+uO
+uO
+uO
+uO
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+UE
+dl
+dl
+dl
+dl
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+nb
+zU
+Zp
+Ru
+Ma
+Ma
+Ma
+Ma
+Ma
+Zp
+aQ
+Zp
+jk
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+tG
+tG
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+FD
+tG
+tG
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(124,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+IB
+IB
+fT
+uO
+uO
+uO
+bO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+uO
+tr
+uO
+qj
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+ef
+Yi
+zU
+zU
+zU
+yE
+zU
+Jj
+jk
+Tn
+Zp
+Zp
+Zp
+Ma
+Ma
+Ma
+Ma
+Ma
+Zp
+Zp
+jk
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+vQ
+zU
+zU
+zU
+zU
+zU
+zU
+tG
+tG
+tG
+tG
+tG
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+nH
+tG
+tG
+tG
+tG
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(125,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+yE
+zU
+zU
+zU
+zU
+zU
+TH
+uO
+uO
+uO
+Qu
+uO
+uO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+uO
+uO
+uO
+uO
+uO
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+Dh
+vQ
+zU
+zU
+zU
+zU
+jk
+Zp
+Ip
+Zp
+vN
+Ma
+Ma
+TX
+Zp
+Zp
+vQ
+Yi
+zU
+zU
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+Ya
+tG
+tG
+tG
+tG
+tG
+tG
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(126,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+ef
+zU
+zU
+QN
+IB
+IB
+uO
+uO
+uO
+uO
+PO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+uO
+uO
+uO
+JO
+uO
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+ef
+Yi
+zU
+yE
+zU
+nb
+nb
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+Zp
+zU
+zU
+zU
+zU
+zU
+Dh
+yE
+zU
+zU
+zU
+zU
+Dh
+zU
+ef
+zU
+zU
+zU
+Dh
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+tG
+lt
+lt
+lt
+PK
+tG
+tG
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(127,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+Dh
+yE
+zU
+zU
+ef
+zn
+IB
+IB
+fT
+uO
+uO
+fT
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+PO
+uO
+uO
+uO
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+nb
+zU
+zU
+Zp
+Zp
+Zp
+Zp
+Tn
+zU
+zU
+yE
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+nH
+tG
+PK
+lt
+QD
+lt
+lt
+tG
+nl
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(128,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+vQ
+zU
+zU
+zU
+vQ
+zn
+IB
+IB
+IB
+iJ
+tr
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+Ld
+uO
+uO
+uO
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+dl
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+vQ
+zU
+Yi
+nb
+zU
+zU
+zU
+zU
+fS
+zU
+zU
+Tn
+as
+zU
+fS
+zU
+vQ
+zU
+yE
+vQ
+zU
+zU
+zU
+zU
+Yi
+yE
+zU
+zU
+zU
+Dh
+Yi
+yE
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+tG
+tG
+tG
+lt
+lt
+VY
+lt
+lt
+tG
+tG
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(129,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+Dh
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+IB
+kV
+uO
+uO
+IB
+IB
+uO
+uO
+iP
+sH
+sH
+sH
+dl
+dl
+dl
+dl
+dl
+sH
+sH
+sH
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+yE
+zU
+zU
+zU
+nb
+zU
+Zp
+Ip
+zU
+nb
+zU
+zU
+zU
+zU
+zU
+Dh
+Yi
+yE
+zU
+zU
+Yi
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+vQ
+zU
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+tG
+nl
+tG
+tG
+lt
+pN
+VY
+lt
+lt
+tG
+Ya
+FD
+FD
+iW
+iW
+iW
+iW
+"}
+(130,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+Ns
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+Ki
+Wr
+uO
+uO
+XJ
+uO
+dS
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+sH
+sH
+dl
+sH
+sH
+sH
+PO
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+fS
+zU
+zU
+zU
+Zp
+Zp
+Zp
+zU
+fS
+zU
+zU
+zU
+Yi
+vQ
+ZJ
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+zU
+Yi
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+tG
+tG
+tG
+PK
+tG
+lt
+QD
+lt
+tG
+nH
+FD
+FD
+iW
+iW
+iW
+iW
+iW
+"}
+(131,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+Dh
+vQ
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+Ki
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+sH
+uO
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+Ph
+vN
+Zp
+zU
+zU
+jk
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+zU
+ef
+zU
+zU
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+nH
+tG
+tG
+nl
+tG
+lt
+tG
+PK
+FD
+FD
+FD
+iW
+iW
+iW
+iW
+iW
+"}
+(132,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+Ki
+Ki
+uO
+uO
+eY
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+sH
+sH
+sH
+sH
+sH
+uO
+uO
+bi
+TM
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+uO
+zn
+zU
+zU
+zU
+zU
+vQ
+yE
+zU
+zU
+zU
+Dh
+zU
+zU
+zU
+Dh
+zU
+zU
+Yi
+zU
+vQ
+MJ
+zU
+zU
+zU
+Dh
+zU
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+FD
+Ya
+tG
+nH
+FD
+FD
+FD
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(133,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+zU
+Dh
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+Ki
+Ki
+Ki
+uO
+uO
+uO
+uO
+uO
+uO
+YV
+uO
+uO
+uO
+uO
+uO
+uO
+qj
+uO
+uO
+uO
+uO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+uO
+jY
+IB
+IB
+IB
+IB
+IB
+uO
+uO
+zn
+zn
+zn
+zn
+zU
+Dh
+Yi
+zU
+zU
+vQ
+zU
+zU
+zU
+vQ
+zU
+yE
+zU
+zU
+ef
+zU
+yE
+zU
+zU
+zU
+vQ
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+FD
+FD
+FD
+FD
+FD
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(134,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+yE
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+Ki
+Ki
+Ki
+Ki
+uO
+uO
+uO
+uO
+dS
+IB
+IB
+qj
+bi
+tr
+uO
+uO
+bi
+uO
+yo
+PO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+an
+uO
+Wr
+uO
+ul
+IB
+IB
+uO
+uO
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+zU
+Dh
+Yi
+yE
+zU
+zU
+Yi
+zU
+zU
+zU
+zU
+zU
+Dh
+zU
+zU
+Yi
+zU
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+FD
+FD
+FD
+FD
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(135,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+vQ
+Yi
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+Ki
+Ki
+Ki
+uO
+uO
+uO
+uO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+uO
+uO
+ll
+uO
+uO
+uO
+uO
+uO
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+ef
+zU
+zU
+ef
+vQ
+zU
+zU
+ef
+zU
+zU
+zU
+Dh
+zU
+zU
+yE
+Yi
+zU
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(136,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+zU
+ef
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+Ki
+XJ
+bi
+uO
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+eK
+uO
+uO
+uO
+uO
+uO
+uO
+uO
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+zU
+zU
+ef
+zU
+zU
+zU
+zU
+zU
+zU
+zU
+Yi
+zU
+vQ
+zn
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(137,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+Yi
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+Bu
+uO
+Mj
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zU
+Dh
+Yi
+zU
+zU
+zU
+Dh
+Yi
+yE
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(138,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+yE
+vQ
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+IB
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+yE
+zU
+zU
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+iW
+"}
+(139,1,1) = {"
+zn
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+kA
+Dh
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
+(140,1,1) = {"
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+zn
+"}
diff --git a/maps/redgate/jungle_underground.dmm b/maps/redgate/jungle_underground.dmm
new file mode 100644
index 0000000000..7f0d00b7f5
--- /dev/null
+++ b/maps/redgate/jungle_underground.dmm
@@ -0,0 +1,24040 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/mug,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"ag" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"aj" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"am" = (
+/obj/structure/ghost_pod/ghost_activated/maintpred/no_announce,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ax" = (
+/obj/structure/railing/grey,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"az" = (
+/obj/machinery/door/airlock/angled_bay/double,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"aD" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"aE" = (
+/obj/random/cargopod,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"aF" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"aU" = (
+/obj/structure/casino_table/blackjack_r{
+ dir = 1
+ },
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"aY" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"aZ" = (
+/obj/structure/table/rack/steel,
+/obj/random/fantasy_item,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ba" = (
+/obj/structure/closet/crate/chest,
+/obj/item/clothing/shoes/black/cuffs,
+/obj/item/clothing/under/dress/gothic,
+/obj/random/fantasy_item/better,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"bc" = (
+/obj/structure/table/standard,
+/obj/random/mug,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilityne)
+"bn" = (
+/obj/structure/table/standard,
+/obj/random/coin,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"bp" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ locked = 0
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"bq" = (
+/obj/structure/table/standard,
+/obj/item/seeds/ambrosiainfernusseed,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"bu" = (
+/obj/random/rigsuit,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"bw" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/packaged/pasty,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"bA" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"bB" = (
+/obj/structure/grille,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/window/basic,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"bE" = (
+/turf/simulated/mineral/floor,
+/area/redgate/jungle/facilityse)
+"bG" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"bI" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"bP" = (
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"bQ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/toy/desk/fan,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"bW" = (
+/obj/structure/smoletrack/roadturn,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"bX" = (
+/obj/random/multiple/large_corp_crate,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"cb" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/soap,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"cf" = (
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"ch" = (
+/obj/structure/theonepizza,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"cj" = (
+/obj/item/weapon/melee/umbrella/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"cn" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"co" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"cq" = (
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"cr" = (
+/obj/machinery/door/airlock/angled_bay/standard{
+ locked = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ct" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"cu" = (
+/obj/structure/reagent_dispensers/fueltank/barrel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"cv" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"cy" = (
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"cA" = (
+/obj/random/coin/sometimes,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"cG" = (
+/mob/living/simple_mob/vore/scrubble,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"cI" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"cL" = (
+/obj/random/meat,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"cP" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"cR" = (
+/obj/structure/smoletrack/roadturn{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"cT" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"cV" = (
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"cW" = (
+/obj/item/weapon/bone/leg,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"cY" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"db" = (
+/obj/machinery/light/small/neon/generic_purple{
+ pixel_y = 32
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"dc" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/light/floortube,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"de" = (
+/obj/structure/ghost_pod/ghost_activated/maintpred/no_announce,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"df" = (
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/sink{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"dg" = (
+/mob/living/simple_mob/vore/devil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"di" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"dj" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"dl" = (
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ds" = (
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"du" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/redgate/jungle/facilityne)
+"dv" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/mouseray,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"dy" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"dB" = (
+/obj/item/weapon/cell/emergency_light,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"dH" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"dI" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"dN" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/drinksoft,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"dS" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/awayloot/looseloot,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"dT" = (
+/obj/machinery/gibber,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"dU" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"dW" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"dX" = (
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"dY" = (
+/obj/structure/grille,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ea" = (
+/obj/structure/salvageable/slotmachine2,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"eg" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"eh" = (
+/obj/structure/closet/walllocker_double/emergency_engi/west,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"el" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/cash/huge,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"er" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"es" = (
+/obj/structure/closet/walllocker/medical/west,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"ev" = (
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ew" = (
+/obj/structure/ore_box,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ex" = (
+/obj/random/vendorall,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"ey" = (
+/mob/living/simple_mob/vore/sonadile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"eD" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/water/pool,
+/area/redgate/jungle/facilitynw)
+"eG" = (
+/obj/machinery/conveyor{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"eH" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"eI" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/table/rack/steel,
+/obj/item/weapon/implantcase/language/eal,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"eK" = (
+/obj/structure/closet/athletic_swimwear,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"eL" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/lava,
+/area/redgate/jungle/facilityse)
+"eM" = (
+/obj/item/weapon/reagent_containers/syringe/drugs,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"eN" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"eQ" = (
+/obj/random/bluespace,
+/obj/structure/closet/crate,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"eR" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/soap,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"eS" = (
+/obj/item/weapon/weldingtool/hugetank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"eW" = (
+/obj/structure/bed/chair/sofa/corp,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/facilityse)
+"fa" = (
+/obj/machinery/door/airlock/angled_bay/double,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"fc" = (
+/obj/machinery/conveyor,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"fd" = (
+/obj/structure/grille,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"fg" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/facilitybar)
+"fh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"fi" = (
+/obj/structure/closet/walllocker_double/hydrant/north,
+/obj/random/tool/alien,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"fj" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"fk" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"fn" = (
+/obj/structure/table/standard,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"fu" = (
+/obj/random/trash,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"fF" = (
+/obj/structure/ghost_pod/ghost_activated/maintpred/no_announce,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"fN" = (
+/obj/structure/casino_table/blackjack_l{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"fR" = (
+/obj/random/donkpocketbox,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"fV" = (
+/obj/structure/table/standard,
+/obj/random/medical/lite,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"fX" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/table/rack/steel,
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"fY" = (
+/obj/structure/closet/walllocker_double/hydrant/north,
+/obj/random/flashlight,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ga" = (
+/obj/structure/table/standard,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"gd" = (
+/obj/structure/table/rack/steel,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"gf" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen/fountain,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"gh" = (
+/obj/machinery/door/airlock/angled_bay/standard,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"gi" = (
+/obj/random/toolbox,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"gj" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"gl" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"gs" = (
+/obj/structure/grille,
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"gt" = (
+/obj/structure/table/gamblingtable,
+/obj/random/junk,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"gx" = (
+/obj/structure/casino_table/roulette_table/long,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"gH" = (
+/obj/random/weapon/guarenteed,
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/facilityne)
+"gI" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"gJ" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"gK" = (
+/obj/random/unidentified_medicine/drug_den,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"gM" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"gW" = (
+/obj/random/coin/sometimes,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"gX" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"gZ" = (
+/obj/random/flashlight,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"hg" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"hi" = (
+/obj/structure/closet/body_bag,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"hj" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/mineral/floor,
+/area/redgate/jungle/facilityse)
+"hq" = (
+/obj/random/crate,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"hv" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"hw" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/toy/desk/newtoncradle,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"hx" = (
+/turf/simulated/wall,
+/area/redgate/jungle/facilitynw)
+"hy" = (
+/obj/item/weapon/bikehorn/rubberducky/red,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"hB" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/custardcream,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"hD" = (
+/turf/simulated/wall/concrete,
+/area/redgate/jungle/facilitynw)
+"hE" = (
+/obj/random/empty_or_lootable_crate,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"hH" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercave)
+"hL" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 8
+ },
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/facilitybar)
+"hM" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/tech_supply,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"hR" = (
+/obj/item/stack/material/fiber,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"id" = (
+/obj/machinery/replicator/clothing,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"ik" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/toolbox,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"io" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"iq" = (
+/obj/item/weapon/mine/stun,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"iv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ix" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"iA" = (
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"iC" = (
+/obj/effect/decal/godray{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"iE" = (
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"iF" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"iR" = (
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"iW" = (
+/obj/random/trash,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"jb" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitysw)
+"jf" = (
+/obj/machinery/telecomms/relay/preset/station,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"jg" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"ji" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"jr" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"jw" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/drinkbottle,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/facilitybar)
+"jy" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"jB" = (
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilitysw)
+"jF" = (
+/obj/item/broken_device/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"jH" = (
+/obj/item/weapon/storage/vore_egg/floppy,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"jK" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/jaffacake,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"jL" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"jQ" = (
+/obj/structure/casino_table/craps,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"ka" = (
+/obj/structure/grille,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"kb" = (
+/obj/random/coin/sometimes,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"kd" = (
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitybar)
+"kg" = (
+/obj/structure/smolebuilding/warehouses,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"kh" = (
+/obj/item/weapon/mine/stun,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"kj" = (
+/obj/structure/reagent_dispensers/fueltank/high,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"kw" = (
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"ky" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/maintenance/misc,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"kC" = (
+/obj/structure/railing/grey,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"kD" = (
+/obj/item/stack/tile/floor/steel_dirty,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"kL" = (
+/obj/machinery/portable_atmospherics/canister/empty/oxygen,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"kS" = (
+/obj/item/weapon/bikehorn,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"kX" = (
+/obj/structure/closet/walllocker_double/casino/west,
+/obj/item/weapon/storage/box/roulette_balls_fancy,
+/obj/item/weapon/storage/box/roulette_balls_normal,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"kY" = (
+/obj/random/mre,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"lb" = (
+/obj/machinery/power/smes/buildable/offmap_spawn/empty,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"lg" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"li" = (
+/obj/random/cigarettes,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"lj" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"ll" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/drinkbottle,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"lt" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/flame/lighter/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"lv" = (
+/obj/structure/salvageable/console_broken_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"lw" = (
+/obj/random/cargopod,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"lx" = (
+/obj/random/tool/powermaint,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"lz" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"lA" = (
+/obj/machinery/gear_dispenser/randomweapons,
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/facilityse)
+"lC" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"lD" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/packaged/sausageroll,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"lH" = (
+/turf/simulated/floor/water/underwater,
+/area/redgate/jungle/underwaterwest)
+"lJ" = (
+/obj/random/plushielarge,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"lN" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/lava,
+/area/redgate/jungle/facilityse)
+"ma" = (
+/obj/random/maintenance/misc,
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"mf" = (
+/obj/item/broken_device/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ml" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/redgate/jungle/facilitynw)
+"mm" = (
+/obj/item/weapon/inducer/unloaded,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"mq" = (
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"mr" = (
+/turf/simulated/floor/water/underwater,
+/area/redgate/jungle/underwaterswamp)
+"mv" = (
+/obj/item/weapon/cannonframe,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"mw" = (
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"my" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"mz" = (
+/obj/random/maintenance/misc,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"mA" = (
+/obj/random/maintenance,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"mJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"mK" = (
+/obj/item/weapon/bone/arm,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"mM" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/surgical/cautery/alien,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"mQ" = (
+/obj/structure/bed/double/weaversilk_nest{
+ color = "#009914";
+ name = "grassy bed"
+ },
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercaveswamp)
+"mS" = (
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/facilitybar)
+"mT" = (
+/obj/structure/bed/chair/sofa/corp/right,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/facilityse)
+"mV" = (
+/obj/machinery/light_switch/breaker{
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"mW" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"mY" = (
+/obj/random/bluespace,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"nc" = (
+/obj/item/weapon/bone/horn,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"nd" = (
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"nf" = (
+/obj/structure/closet/radiation,
+/obj/random/explorer_shield,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ng" = (
+/obj/item/weapon/newspaper,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"nq" = (
+/obj/structure/toilet,
+/obj/random/grenade/less_lethal,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"ns" = (
+/obj/structure/kitchenspike,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"nv" = (
+/obj/structure/morgue,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"nw" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/lava,
+/area/redgate/jungle/facilityse)
+"nx" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"nE" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilitynw)
+"nI" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"nJ" = (
+/obj/vehicle/train/engine/quadbike/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"nM" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 30
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"nN" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/bone/leg,
+/obj/item/weapon/bone/arm,
+/obj/item/weapon/bone/horn,
+/obj/item/weapon/bone/skull/unknown,
+/obj/random/mug,
+/obj/item/clothing/accessory/bracelet/material/gold,
+/obj/item/clothing/ears/earring/dangle/gold,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"nP" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen/fountain4,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"nZ" = (
+/turf/simulated/floor/tiled/white,
+/area/redgate/jungle/facilityse)
+"ob" = (
+/obj/random/pottedplant,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"od" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ok" = (
+/obj/item/weapon/implantcase/armblade,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"oo" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"os" = (
+/turf/simulated/floor/wood,
+/area/redgate/jungle/facilityse)
+"ot" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ou" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/weapon/material/twohanded/spear/flint,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/random/fantasy_item,
+/obj/random/potion_ingredient,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercaveswamp)
+"ov" = (
+/turf/simulated/floor/water/contaminated,
+/area/redgate/jungle/facilitynw)
+"ow" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/packageWrap,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"oB" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance/morestuff,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"oL" = (
+/obj/structure/stairs/spawner/south,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"oM" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"oO" = (
+/obj/structure/reagent_dispensers/bloodbarrel,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitysw)
+"oQ" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/projectile/scrapped_grenadelauncher,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"oT" = (
+/mob/living/simple_mob/vore/scrubble,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"oW" = (
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"oX" = (
+/obj/random/vendorall,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"oY" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"pa" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"pd" = (
+/obj/structure/grille,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"pg" = (
+/obj/structure/closet/walllocker/medical/west,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"pn" = (
+/obj/random/tool/alien,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"pp" = (
+/obj/item/weapon/inflatable_duck,
+/turf/simulated/floor/water/deep/pool,
+/area/redgate/jungle/facilitynw)
+"pq" = (
+/obj/machinery/door/airlock/angled_bay/double,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitybar)
+"pt" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"pv" = (
+/obj/structure/table/rack/steel,
+/obj/random/bluespace,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"pz" = (
+/obj/structure/dancepole,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/facilityse)
+"pE" = (
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"pI" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"pJ" = (
+/obj/structure/table/rack/steel,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"pO" = (
+/obj/item/device/healthanalyzer/advanced,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"pR" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"pS" = (
+/obj/random/carp_plushie,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"pU" = (
+/obj/random/firstaid,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"pZ" = (
+/obj/item/weapon/cell/spike,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ql" = (
+/obj/structure/closet/walllocker_double/hydrant/north,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"qn" = (
+/obj/random/material/precious,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"qp" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/miniature,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"qD" = (
+/obj/item/weapon/anodevice,
+/obj/structure/closet/tent/B,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"qH" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/table/rack/steel,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"qI" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"qJ" = (
+/obj/random/toy,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"qK" = (
+/turf/simulated/wall,
+/area/redgate/jungle/facilitybar)
+"qL" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"qM" = (
+/obj/structure/closet/walllocker_double/hydrant/north,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"qU" = (
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"rd" = (
+/turf/simulated/floor/water/pool,
+/area/redgate/jungle/facilitynw)
+"rg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"rh" = (
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/facilityne)
+"rk" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"rn" = (
+/obj/structure/dogbed,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"rq" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/table/rack/steel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"rv" = (
+/obj/random/tank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"rw" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ry" = (
+/obj/item/weapon/bone/skull/unknown,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"rB" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/facilityne)
+"rD" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/pen/fountain8,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"rF" = (
+/obj/machinery/smartfridge/drying_rack,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"rJ" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"rR" = (
+/obj/item/weapon/bone,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"rU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/wall,
+/area/redgate/jungle/facilitysw)
+"sp" = (
+/obj/random/trash,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"sq" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"sr" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"su" = (
+/obj/item/weapon/anobattery,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"sv" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/underwatercave)
+"sw" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/water/contaminated,
+/area/redgate/jungle/facilityse)
+"sy" = (
+/obj/random/underdark,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilitysw)
+"sA" = (
+/obj/item/weapon/bone,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"sG" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"sL" = (
+/obj/structure/reagent_dispensers/cookingoil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"sM" = (
+/obj/machinery/body_scanconsole{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"sN" = (
+/mob/living/simple_mob/vore/devil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"sT" = (
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"sZ" = (
+/obj/machinery/light/floortube{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/facilityse)
+"tc" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercave)
+"tf" = (
+/obj/item/weapon/mine/stun,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"th" = (
+/obj/structure/salvageable/console{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"tj" = (
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"tl" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"tn" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/pen,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"to" = (
+/obj/random/cash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ty" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"tF" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/flame/lighter/random,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"tL" = (
+/obj/structure/closet/walllocker_double/emergency_engi/east,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"tO" = (
+/obj/random/toy,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"tP" = (
+/obj/machinery/light/small/torch{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercaveswamp)
+"tQ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/packaged/scotchegg,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"tR" = (
+/obj/random/multiple/large_corp_crate,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"tT" = (
+/obj/machinery/conveyor{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"tV" = (
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/deck/cards/casino,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"ub" = (
+/obj/structure/casino_table/roulette_long,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"ue" = (
+/obj/structure/closet/walllocker/medical/east,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilitynw)
+"uf" = (
+/obj/random/tank,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"uh" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"uk" = (
+/obj/random/flashlight,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"ul" = (
+/obj/structure/table/standard,
+/obj/random/medical/pillbottle,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"up" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"uu" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ux" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"uy" = (
+/turf/simulated/wall/gold,
+/area/redgate/jungle/facilitycasino)
+"uM" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/bluespace,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"uP" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"uS" = (
+/obj/structure/stairs/spawner/west,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"uT" = (
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"uV" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"uY" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/item/weapon/gun/energy/sickshot,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"vd" = (
+/obj/structure/smoletrack/roadturn{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"vi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"vj" = (
+/obj/structure/ghost_pod/ghost_activated/maintpred/no_announce,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"vq" = (
+/obj/item/weapon/folder,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"vw" = (
+/obj/random/material/refined,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"vx" = (
+/obj/machinery/conveyor{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"vB" = (
+/mob/living/simple_mob/animal/passive/mouse,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"vH" = (
+/obj/item/weapon/refill_cartridge/universal,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"vI" = (
+/obj/machinery/door/airlock/angled_bay/standard{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"vM" = (
+/obj/item/weapon/gun/projectile/deagle/gold,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"vS" = (
+/obj/structure/salvageable/machine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"vU" = (
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"vZ" = (
+/obj/machinery/door/airlock/angled_bay/double,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"wc" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/tool/power,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"wg" = (
+/obj/machinery/door/airlock/angled_bay/standard{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"ww" = (
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"wy" = (
+/obj/structure/closet/crate/trashcart,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"wA" = (
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"wB" = (
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/facilityse)
+"wD" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/random/cigarettes,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"wG" = (
+/obj/structure/railing/grey,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"wO" = (
+/obj/random/trash_pile,
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"wP" = (
+/obj/structure/table/rack/steel,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"wT" = (
+/obj/machinery/door/airlock/angled_bay/standard{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitybar)
+"wX" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"wZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"xa" = (
+/obj/structure/flora/tree/jungle{
+ icon_scale_x = 3;
+ icon_scale_y = 3;
+ max_x_scale = 3;
+ max_y_scale = 3;
+ min_x_scale = 3;
+ min_y_scale = 3
+ },
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"xf" = (
+/obj/structure/table/standard,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"xk" = (
+/obj/structure/loot_pile/mecha/gygax/dark/adv,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"xn" = (
+/obj/structure/reagent_dispensers/coolanttank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"xo" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"xs" = (
+/obj/structure/reagent_dispensers/foam,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"xv" = (
+/obj/structure/closet/walllocker_double/emergency_engi/west,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"xy" = (
+/obj/effect/decal/godray{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"xz" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"xF" = (
+/obj/structure/bed/nest,
+/obj/item/weapon/storage/vore_egg/purple,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"xH" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"xS" = (
+/obj/structure/salvageable/implant_container_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"xT" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"xW" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/implanter/vrlanguage,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ya" = (
+/obj/machinery/atmospherics/pipe/tank/air/full,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yc" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/packaged/porkpie,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"yd" = (
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"yk" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/mech_toy,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"yl" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"yp" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/simulated/floor/tiled/white,
+/area/redgate/jungle/facilityse)
+"yr" = (
+/obj/random/unidentified_medicine,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"ys" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yu" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/underwatercaveswamp)
+"yv" = (
+/obj/structure/closet/wardrobe/black,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yy" = (
+/obj/machinery/conveyor{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"yD" = (
+/obj/machinery/light_switch/breaker{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"yE" = (
+/obj/structure/smolebuilding/houses,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yJ" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"yM" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"yO" = (
+/obj/structure/toilet,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"yP" = (
+/obj/structure/railing/grey,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yS" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yV" = (
+/obj/random/coin/sometimes,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yW" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yX" = (
+/obj/random/bomb_supply,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"yY" = (
+/obj/structure/bonfire/permanent,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"zb" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/toolbox,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"zh" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"zj" = (
+/obj/structure/salvageable/machine_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"zl" = (
+/obj/structure/bed/chair/sofa/pew{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"zt" = (
+/mob/living/simple_mob/vore/scrubble,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"zC" = (
+/turf/simulated/floor/water{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"zM" = (
+/mob/living/simple_mob/vore/sonadile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"zP" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/drinkbottle,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"zQ" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/accessory/shiny/gloves,
+/obj/item/clothing/accessory/shiny/socks,
+/obj/item/clothing/head/shiny_hood,
+/obj/item/clothing/under/shiny/catsuit,
+/obj/item/clothing/under/shiny/leotard,
+/obj/item/clothing/shoes/boots/jackboots/thigh,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"zW" = (
+/obj/structure/picnic_blanket_deployed/for_mapping_use,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"zY" = (
+/obj/structure/closet/walllocker_double/hydrant/north,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"zZ" = (
+/obj/structure/railing/grey,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Aa" = (
+/obj/item/weapon/storage/mre/menu12,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ab" = (
+/obj/structure/flora/skeleton,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"Ag" = (
+/obj/machinery/door/airlock/angled_bay/standard,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Al" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/old/burger,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"An" = (
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Au" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/bottle/poppy,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Az" = (
+/obj/effect/map_effect/interval/effect_emitter/smoke/fire,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"AA" = (
+/obj/item/weapon/grenade/confetti/party_ball,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"AI" = (
+/obj/structure/old_roboprinter,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"AL" = (
+/obj/structure/bed/padded,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"AN" = (
+/obj/structure/salvageable/autolathe,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"AO" = (
+/obj/random/tool/alien,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"AP" = (
+/obj/random/maintenance/morestuff,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"AV" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/pouch,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Bf" = (
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilityne)
+"Bh" = (
+/turf/simulated/wall,
+/area/redgate/jungle/facilityse)
+"Bi" = (
+/obj/machinery/slot_machine,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"Bk" = (
+/turf/simulated/wall/wood,
+/area/redgate/jungle/murderroom)
+"Bl" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/facilityne)
+"Bn" = (
+/obj/machinery/atmospherics/pipe/tank/carbon_dioxide,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Bo" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"Bt" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/cable_coil/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Bw" = (
+/obj/effect/fake_sun/underwater,
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/facilitysw)
+"By" = (
+/obj/random/multiple/random_size_crate/no_weapons/nofail,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"BK" = (
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"BL" = (
+/obj/structure/casino_table/blackjack_m{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"BM" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"BQ" = (
+/obj/random/multiple/underdark/mechtool,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"BT" = (
+/obj/structure/closet/walllocker_double/casino/west,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/dicecup,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"BV" = (
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"BW" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"BY" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/miniature,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Cb" = (
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Ch" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Ci" = (
+/obj/machinery/conveyor{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Cj" = (
+/obj/random/unidentified_medicine,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"Co" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Ct" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"Cw" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"CB" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/lava,
+/area/redgate/jungle/facilityse)
+"CC" = (
+/obj/item/weapon/storage/firstaid/fire,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"CE" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"CG" = (
+/obj/structure/closet/walllocker_double/survival/west,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"CH" = (
+/obj/structure/smoletrack/roadT{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"CK" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"CO" = (
+/mob/living/simple_mob/vore/devil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"CT" = (
+/obj/random/trash,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"CX" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"CY" = (
+/obj/structure/bed/chair/office{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"CZ" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Dh" = (
+/obj/random/miniature,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Dj" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/weapon/bone/skull,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"Dn" = (
+/obj/structure/closet/walllocker_double/casino/west,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/schnapsen,
+/obj/item/weapon/deck/holder/casino,
+/obj/item/weapon/deck/holder/casino,
+/obj/item/weapon/deck/holder/casino,
+/obj/item/weapon/deck/holder/casino,
+/obj/item/weapon/deck/holder/casino,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"Dr" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Dt" = (
+/obj/random/trash,
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Dw" = (
+/obj/structure/fitness/punchingbag,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Dx" = (
+/obj/structure/closet/wardrobe/science_white,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Dy" = (
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/white,
+/area/redgate/jungle/facilityse)
+"DF" = (
+/obj/random/crate,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"DH" = (
+/obj/machinery/light_switch/breaker{
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"DM" = (
+/obj/structure/railing/grey,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"DO" = (
+/obj/structure/table/rack/shelf/wood,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"DP" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"DQ" = (
+/obj/random/meat,
+/obj/random/meat,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"DS" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"DW" = (
+/obj/machinery/replicator/vore,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"DY" = (
+/obj/random/powercell,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ec" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Ed" = (
+/obj/structure/salvageable/implant_container_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Eh" = (
+/obj/random/tank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"El" = (
+/obj/item/stack/material/log,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Em" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"Es" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Eu" = (
+/obj/structure/table/gamblingtable,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"Ex" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/lava,
+/area/redgate/jungle/facilityse)
+"Ez" = (
+/obj/random/tank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"EA" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"EL" = (
+/obj/structure/bed/chair/sofa/pew/right{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"EM" = (
+/obj/effect/decal/godray{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"ER" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"ES" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"ET" = (
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/redgate/jungle/facilityse)
+"EU" = (
+/obj/random/mainttoyloot,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"EV" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Fb" = (
+/obj/random/maintenance,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Fc" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"Fd" = (
+/obj/machinery/seed_storage/random,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"Fe" = (
+/obj/random/cargopod,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"Ff" = (
+/obj/structure/bed/chair/sofa/corp/left,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/facilityse)
+"Fk" = (
+/obj/structure/closet/excavation,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Fp" = (
+/obj/structure/salvageable/slotmachine1,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"Fw" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"Fx" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"FA" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/facilitysw)
+"FJ" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"FL" = (
+/obj/random/material/refined,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"FP" = (
+/obj/structure/closet/walllocker_double/emergency_engi/east,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"FV" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"Gc" = (
+/obj/item/weapon/reagent_containers/glass/beaker/noreact,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ge" = (
+/obj/effect/decal/godray,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"Gh" = (
+/obj/item/weapon/mine/stun,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Gj" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/contraband/nofail,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Gp" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Gt" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/redgate/jungle/facilityse)
+"Gu" = (
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"Gv" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/unidentified_medicine,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Gy" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"GE" = (
+/obj/random/miniature,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"GF" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/toy/desk/dippingbird,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"GH" = (
+/obj/structure/table/gamblingtable,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"GI" = (
+/obj/structure/closet/crate/trashcart,
+/obj/random/grenade/less_lethal,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"GK" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"GN" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"GP" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"GS" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"GW" = (
+/obj/structure/toilet/prison,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Ha" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Hc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Hd" = (
+/obj/structure/closet/firecloset/full/double,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"He" = (
+/obj/structure/closet/walllocker_double/emergency_engi/south,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Hf" = (
+/obj/structure/disposalpipe/broken{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Hh" = (
+/obj/machinery/door/airlock/angled_bay/standard,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Ho" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/maintenance,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Hr" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"Hs" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"Hw" = (
+/obj/machinery/light/small/torch{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/redgate/jungle/murderroom)
+"Hz" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/underwaterpong)
+"HB" = (
+/obj/item/weapon/implanter,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"HI" = (
+/mob/living/simple_mob/animal/passive/mouse,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"HK" = (
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"HL" = (
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"HP" = (
+/obj/machinery/light/flamp,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"HQ" = (
+/obj/structure/table/standard,
+/obj/item/seeds/ambrosiagaiaseed,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"HY" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/mug,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"HZ" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"Id" = (
+/obj/structure/grille,
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Ie" = (
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercaveswamp)
+"If" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Ig" = (
+/obj/structure/closet/walllocker/medical/east,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Il" = (
+/obj/machinery/light/floortube,
+/turf/simulated/floor/bluegrid,
+/area/redgate/jungle/facilityse)
+"Im" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/cash,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"Is" = (
+/obj/random/fishing_junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"It" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/tool/power,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Iu" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"IB" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/shaker{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"IC" = (
+/obj/item/weapon/folder,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"ID" = (
+/turf/simulated/wall/concrete,
+/area/redgate/jungle/facilityne)
+"IE" = (
+/obj/machinery/door/airlock/angled_bay/standard,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitybar)
+"II" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"IJ" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"IK" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"IM" = (
+/turf/simulated/floor/water/deep/pool,
+/area/redgate/jungle/facilitynw)
+"IO" = (
+/obj/fiftyspawner/fiber,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"IQ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/saucer,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"IV" = (
+/obj/random/maintenance/misc,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"IW" = (
+/obj/item/weapon/implanter/compliance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Jj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/beaker/vial/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Jk" = (
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Jw" = (
+/mob/living/simple_mob/animal/sif/duck,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"JA" = (
+/obj/structure/smoletrack/roadT,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"JD" = (
+/obj/structure/railing/grey,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"JF" = (
+/obj/item/weapon/storage/mre/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"JG" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"JI" = (
+/obj/structure/bed/chair/backed_red,
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/facilitybar)
+"JO" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/facilityne)
+"JR" = (
+/obj/machinery/optable,
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor/tiled/white,
+/area/redgate/jungle/facilityse)
+"JS" = (
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"JT" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/toolbox/lunchbox/filled,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"JU" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Kh" = (
+/obj/structure/closet/walllocker_double/emergency_engi/south,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Kq" = (
+/obj/random/mouseremains,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Kv" = (
+/turf/simulated/mineral{
+ climbable = 1
+ },
+/area/redgate/jungle/facilityne)
+"Ky" = (
+/obj/random/mech,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitysw)
+"KA" = (
+/obj/structure/largecrate/tits,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"KC" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilityne)
+"KD" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/shrimpsandbananas,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"KG" = (
+/obj/random/plushie,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"KJ" = (
+/obj/structure/table/standard,
+/obj/random/pizzabox,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilityne)
+"KK" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"KO" = (
+/obj/random/cutout,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"KT" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/bodybags,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"KX" = (
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Lc" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Lf" = (
+/obj/structure/closet/walllocker/emerglocker/north,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Lg" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Lm" = (
+/turf/simulated/floor/water/underwater,
+/area/redgate/jungle/underwaterpong)
+"Lo" = (
+/obj/item/weapon/reagent_containers/glass/beaker/vial/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Lv" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Lx" = (
+/obj/structure/salvageable/server_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Ly" = (
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"LB" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"LC" = (
+/obj/structure/closet/crate/bin{
+ anchored = 1
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"LE" = (
+/obj/structure/salvageable/personal,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"LH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"LJ" = (
+/obj/random/drinksoft,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"LM" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"LN" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/toy/desk/officetoy,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"LP" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/facilityse)
+"LR" = (
+/obj/structure/prop/poicanister,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"LT" = (
+/obj/structure/fitness/weightlifter,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"LW" = (
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"Ma" = (
+/obj/structure/bed/chair/office{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"Md" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/table/rack/steel,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityne)
+"Mi" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/melee/chainofcommand/curator_whip,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ml" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"Mo" = (
+/obj/structure/smoletrack/roadturn{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Mp" = (
+/obj/effect/decal/godray{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"Mx" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"Mz" = (
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/random/unidentified_medicine,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"MA" = (
+/obj/random/tetheraid,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"MD" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ME" = (
+/obj/item/device/pipe_painter,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"MF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"MG" = (
+/obj/random/trash_pile,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"MK" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/contaminated,
+/area/redgate/jungle/facilityse)
+"MN" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"MO" = (
+/obj/structure/closet/walllocker_double/engineering/east,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"MP" = (
+/obj/item/weapon/handcuffs/legcuffs/fuzzy,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"MQ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"MS" = (
+/obj/random/toolbox,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Na" = (
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"Nb" = (
+/turf/simulated/wall,
+/area/redgate/jungle/facilityne)
+"Nc" = (
+/obj/structure/smoletrack/roadS,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Nd" = (
+/obj/random/fantasy_item,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercave)
+"Nh" = (
+/obj/machinery/vending/desatti,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Ni" = (
+/obj/random/humanoidremains,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Nj" = (
+/obj/random/flashlight,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Nk" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilitynw)
+"Nm" = (
+/obj/random/material/refined,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Nn" = (
+/obj/structure/smolebuilding/business,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Nx" = (
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/device/glasses_kit,
+/obj/random/medical/pillbottle,
+/obj/random/medical/pillbottle,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"NF" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"NG" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"NR" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/bottle/frostoil,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"NS" = (
+/obj/structure/smoletrack/roadS{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"NT" = (
+/obj/item/weapon/storage/box/handcuffs/fake,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"NZ" = (
+/obj/random/toolbox,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Oa" = (
+/obj/machinery/light_switch/breaker{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Oo" = (
+/obj/structure/prop/rock/small,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"Oq" = (
+/mob/living/simple_mob/vore/stalker,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Os" = (
+/obj/random/obstruction,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ou" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Ow" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Oy" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"OJ" = (
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"OK" = (
+/obj/random/miniature,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"OL" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"OM" = (
+/obj/machinery/conveyor{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"OO" = (
+/obj/item/clothing/mask/gas/poltergeist,
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"OR" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"OS" = (
+/turf/simulated/wall/solidrock,
+/area/redgate/jungle/deepforest)
+"OT" = (
+/obj/structure/smolebuilding/museum,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"OU" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/tank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"OV" = (
+/obj/item/weapon/handcuffs/cable/red,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"OW" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 28
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"OY" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"OZ" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Pa" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/phone,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Pb" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"Pc" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Pd" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Pe" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ph" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper_bin,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Pi" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Pp" = (
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8
+ },
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilityne)
+"Pt" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"PA" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/bomb_supply,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"PC" = (
+/obj/random/tank,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"PD" = (
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitysw)
+"PE" = (
+/obj/random/technology_scanner,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"PK" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"PM" = (
+/mob/living/simple_mob/vore/stalker,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"PN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"PU" = (
+/obj/machinery/shieldgen,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"PV" = (
+/obj/structure/table/standard,
+/obj/item/seeds/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"PX" = (
+/obj/random/multiple/large_corp_crate/no_weapons,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"PY" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/mug,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"PZ" = (
+/obj/structure/table/standard,
+/obj/random/medical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Qa" = (
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/simulated/floor/water/deep/pool,
+/area/redgate/jungle/facilitynw)
+"Qb" = (
+/obj/random/bomb_supply,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Qd" = (
+/obj/structure/railing/grey,
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Qi" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Qj" = (
+/obj/item/weapon/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"Qq" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Qr" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Qw" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"QB" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/towel/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"QC" = (
+/obj/structure/prop/rock/sharp,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"QH" = (
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"QJ" = (
+/obj/structure/closet/l3closet/medical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"QL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"QO" = (
+/obj/random/mainttoyloot,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"QQ" = (
+/obj/machinery/door/airlock/angled_bay/standard,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"QS" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/folder/yellow,
+/turf/simulated/floor/wmarble,
+/area/redgate/jungle/facilityse)
+"QY" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ra" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Rb" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Rf" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Rh" = (
+/obj/structure/closet/secure_closet/engineering_electrical/double{
+ anchored = 1;
+ locked = 0
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Rr" = (
+/obj/machinery/door/airlock/angled_bay/double{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Rw" = (
+/obj/random/instrument,
+/turf/simulated/floor/wood,
+/area/redgate/jungle/facilityse)
+"Rx" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"RM" = (
+/obj/structure/closet/firecloset/full/atmos,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"RP" = (
+/obj/structure/closet/walllocker_double/engineering/south,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"RR" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"RT" = (
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"RU" = (
+/obj/structure/bed/chair/sofa/pew/left{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Sc" = (
+/obj/structure/sign/warning/lava,
+/turf/simulated/wall,
+/area/redgate/jungle/facilityse)
+"Sk" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/drinksoft,
+/obj/random/drinksoft,
+/obj/random/drinksoft,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"So" = (
+/obj/structure/table/rack/steel,
+/obj/random/smes_coil,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Sp" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Ss" = (
+/obj/structure/prop/rock/round,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercave)
+"Sv" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Sw" = (
+/obj/item/clothing/head/hardhat/firefighter/atmos/old,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Sy" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/table/rack/steel,
+/obj/random/mainttoyloot/nofail,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Sz" = (
+/obj/random/cutout,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"SA" = (
+/obj/structure/table/standard,
+/obj/item/seeds/ambrosiadeusseed,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"SB" = (
+/obj/random/ammo_all,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"SJ" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"SP" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"SU" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"SW" = (
+/obj/structure/casino_table/craps{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"SY" = (
+/obj/structure/prop/rock/flat,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"Te" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitysw)
+"Th" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"Ti" = (
+/obj/structure/table/standard,
+/obj/random/action_figure,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Tj" = (
+/obj/structure/table/standard,
+/obj/item/seeds/ambrosiavulgarisseed,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"Tq" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/grenade/box,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ts" = (
+/obj/machinery/door/airlock/angled_bay/double,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Tw" = (
+/obj/item/weapon/autopsy_scanner,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"TA" = (
+/obj/machinery/wheel_of_fortune,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"TB" = (
+/obj/structure/closet/secure_closet/medical2{
+ locked = 0
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"TH" = (
+/obj/structure/fireplace,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"TN" = (
+/mob/living/simple_mob/vore/aggressive/panther{
+ ai_holder_type = /datum/ai_holder/simple_mob/retaliate;
+ melee_damage_lower = 2;
+ melee_damage_upper = 5;
+ vore_pounce_chance = 50;
+ vore_pounce_maxhealth = 100
+ },
+/turf/simulated/floor/outdoors/grass/forest{
+ outdoors = -1
+ },
+/area/redgate/jungle/deepforest)
+"TX" = (
+/obj/random/material/precious,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ub" = (
+/obj/structure/loot_pile/mecha/durand,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Uh" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/projectile/scrapped_pistol,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Un" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Us" = (
+/obj/structure/closet,
+/obj/item/device/multitool,
+/obj/item/weapon/pen/multi,
+/obj/item/stack/cable_coil/silver,
+/obj/item/weapon/tool/wirecutters/brass,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Uv" = (
+/obj/random/mainttoyloot,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Uw" = (
+/obj/structure/table/rack/steel,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Uz" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/item/weapon/circuitboard/smes,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"UB" = (
+/obj/machinery/injector_maker{
+ pixel_y = 21
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"UE" = (
+/turf/simulated/floor,
+/area/redgate/jungle/facilitybar)
+"UF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/scalpel,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"UL" = (
+/obj/random/cargopod,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"UP" = (
+/obj/random/cutout,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"US" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/energy/sec,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"UU" = (
+/obj/random/bomb_supply,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Vh" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"Vi" = (
+/mob/living/simple_mob/vore/stalker,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Vl" = (
+/obj/structure/closet/crate/engineering/electrical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Vm" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/facilitynw)
+"Vq" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/lava,
+/area/redgate/jungle/facilityse)
+"Vt" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Vw" = (
+/obj/machinery/conveyor{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Vx" = (
+/obj/random/maintenance,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Vz" = (
+/obj/machinery/door/airlock/angled_bay/standard{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"VF" = (
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"VG" = (
+/turf/simulated/wall,
+/area/redgate/jungle/facilitysw)
+"VJ" = (
+/obj/structure/flora/pottedplant/tropical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"VM" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"VN" = (
+/obj/structure/bed/double,
+/obj/item/weapon/bedsheet/yellowdouble,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"VP" = (
+/obj/item/weapon/reagent_containers/food/snacks/jaffacake{
+ bitesize = 0.1;
+ icon_scale_x = 3;
+ icon_scale_y = 3;
+ tf_scale_x = 3;
+ tf_scale_y = 3
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"VS" = (
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilitynw)
+"VW" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"VZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Wb" = (
+/obj/structure/railing/grey,
+/obj/random/unidentified_medicine,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Wi" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/contaminated,
+/area/redgate/jungle/facilityse)
+"Wo" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Wv" = (
+/obj/random/pacman,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"WE" = (
+/obj/structure/salvageable/computer_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"WG" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+ },
+/turf/simulated/floor/bmarble,
+/area/redgate/jungle/facilitybar)
+"WI" = (
+/obj/random/flashlight,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"WO" = (
+/obj/random/mre,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"WS" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"WX" = (
+/obj/structure/closet/crate/trashcart,
+/obj/random/maintenance/security,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Xg" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Xh" = (
+/obj/structure/fireaxecabinet{
+ pixel_y = 27
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Xj" = (
+/obj/random/maintenance/misc,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Xm" = (
+/obj/structure/railing/grey,
+/mob/living/simple_mob/animal/passive/mouse,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"Xp" = (
+/obj/item/sticky_pad/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Xq" = (
+/obj/random/powercell/device,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Xx" = (
+/obj/random/awayloot/looseloot,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Xz" = (
+/obj/structure/closet/coffin,
+/obj/random/tool/alien,
+/turf/simulated/floor/tiled/techfloor,
+/area/redgate/jungle/facilitynw)
+"XC" = (
+/mob/living/simple_mob/animal/passive/mouse,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"XH" = (
+/obj/machinery/optable,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"XI" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"XM" = (
+/obj/random/mre,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"XP" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitysw)
+"XQ" = (
+/obj/structure/table/standard,
+/obj/random/medical/pillbottle,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"XR" = (
+/obj/item/sticky_pad/random,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Yf" = (
+/obj/structure/grille/broken,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/obj/random/meat,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"Yg" = (
+/turf/simulated/mineral/ignore_cavegen,
+/area/redgate/jungle/murderroom)
+"Yi" = (
+/obj/structure/salvageable/data_os,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Yk" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"Yl" = (
+/obj/random/mainttoyloot,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Ym" = (
+/obj/random/snack,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"Yt" = (
+/obj/random/mech/old,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitysw)
+"Yy" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"Yz" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"YG" = (
+/obj/structure/balloon/ghost,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"YK" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/ammo_all,
+/turf/simulated/floor/reinforced,
+/area/redgate/jungle/facilitybar)
+"YY" = (
+/obj/item/weapon/handcuffs/fuzzy,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"Za" = (
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Zb" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/truffle/random,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"Zc" = (
+/obj/structure/salvageable/data,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Ze" = (
+/turf/simulated/floor/tiled,
+/area/redgate/jungle/facilityne)
+"Zh" = (
+/obj/machinery/door/airlock/angled_bay/standard{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Zk" = (
+/obj/random/cargopod,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityne)
+"Zn" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/drinkbottle,
+/obj/machinery/light/floortube,
+/turf/simulated/floor/redgrid/animated,
+/area/redgate/jungle/facilitybar)
+"Zo" = (
+/obj/random/outcrop,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/facilitysw)
+"Zy" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor,
+/area/redgate/jungle/facilityse)
+"ZC" = (
+/obj/structure/casino_table,
+/turf/simulated/floor/tiled/eris/white/golden,
+/area/redgate/jungle/facilitycasino)
+"ZF" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilityse)
+"ZH" = (
+/obj/item/weapon/tool/wrench/pipe,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ZI" = (
+/obj/structure/loot_pile/surface/bones,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercaveswamp)
+"ZJ" = (
+/obj/item/weapon/bone/ribs,
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercavepond)
+"ZM" = (
+/obj/structure/reagent_dispensers/he3,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/redgate/jungle/facilitynw)
+"ZO" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/maintenance,
+/turf/simulated/floor/carpet/blue,
+/area/redgate/jungle/facilityse)
+"ZR" = (
+/turf/simulated/mineral/floor/ignore_cavegen,
+/area/redgate/jungle/underwatercave)
+"ZU" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/fantasy_item,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitynw)
+"ZV" = (
+/mob/living/simple_mob/animal/passive/mouse,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+"ZX" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/surgical/scalpel/alien,
+/turf/simulated/floor,
+/area/redgate/jungle/facilitysw)
+
+(1,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Yg
+Yg
+Yg
+Bk
+Bk
+Bk
+Bk
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+Bw
+"}
+(2,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Yg
+Yg
+Bk
+Bk
+qU
+qL
+DO
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(3,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Bk
+Bk
+Bk
+qU
+qU
+qU
+Dj
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(4,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Bk
+di
+qU
+qU
+qU
+qU
+nN
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+jB
+jB
+jB
+Zo
+jB
+jB
+jB
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(5,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Bk
+Bk
+Bk
+qU
+qU
+qU
+DO
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+jB
+Zo
+jB
+jB
+jB
+jB
+jB
+Zo
+jB
+jB
+FA
+FA
+FA
+FA
+FA
+"}
+(6,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Vm
+Vm
+Vm
+hx
+cq
+cq
+Gp
+cq
+cq
+nd
+pR
+cq
+cq
+cq
+cq
+lw
+cq
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Yg
+Yg
+Bk
+Bk
+rn
+Hw
+DO
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+VG
+jB
+jB
+jB
+jB
+Zo
+jB
+jB
+jB
+sy
+jB
+jB
+FA
+FA
+FA
+FA
+FA
+"}
+(7,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+WS
+cq
+cq
+cq
+cq
+pR
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Yg
+Yg
+Yg
+Bk
+Bk
+Bk
+Bk
+Bk
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+Zo
+jB
+FA
+FA
+FA
+FA
+"}
+(8,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+ww
+cq
+gX
+cq
+cq
+cq
+Gp
+cq
+cq
+cq
+cq
+Oy
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+iR
+jB
+Zo
+jB
+jB
+jB
+jB
+Zo
+jB
+jB
+jB
+FA
+FA
+FA
+FA
+"}
+(9,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+PU
+Mx
+Mx
+jg
+Mx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+HI
+cq
+cq
+cq
+cq
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+pR
+cq
+cq
+cq
+oo
+nd
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+lx
+iR
+mf
+iR
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+FA
+FA
+FA
+FA
+"}
+(10,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+lb
+HL
+ER
+ER
+ER
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+Gp
+cq
+cq
+uu
+BW
+ys
+BW
+hx
+hx
+hx
+Pe
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+Gp
+cq
+cq
+cq
+Ra
+Rf
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+iR
+iR
+jB
+jB
+Zo
+jB
+jB
+jB
+jB
+jB
+jB
+jB
+FA
+FA
+FA
+"}
+(11,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+Mx
+oW
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+MN
+cq
+eh
+cq
+cq
+cq
+cq
+gX
+co
+xW
+cq
+QY
+hx
+hx
+hx
+cq
+hx
+dI
+hx
+hx
+hD
+hD
+hD
+hD
+hD
+hx
+Gp
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+jy
+xT
+bP
+xT
+bP
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+lH
+lH
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+jB
+jB
+jB
+Zo
+jB
+FA
+FA
+FA
+FA
+"}
+(12,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+Mx
+oW
+cq
+cq
+Pe
+hx
+hx
+hx
+nd
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+cq
+hx
+hx
+hD
+nE
+VS
+VS
+ue
+VS
+cq
+cq
+MN
+cq
+Gp
+cq
+cq
+cq
+pR
+yV
+cq
+MN
+cq
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+ex
+bP
+er
+Nk
+bP
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+sv
+sv
+sv
+ZR
+sv
+sv
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+Rb
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+rk
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+iR
+iR
+iR
+zM
+iR
+iR
+iR
+iR
+jB
+jB
+jB
+jB
+FA
+FA
+FA
+FA
+"}
+(13,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+lb
+oW
+cq
+cq
+Rh
+hx
+hx
+hx
+Yl
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+cq
+hx
+hx
+hD
+hD
+hD
+hD
+hD
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+zY
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+ex
+bP
+xf
+JT
+bP
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+sv
+sv
+sv
+ZR
+sv
+sv
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+dY
+ka
+Id
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+ew
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+jB
+jB
+Zo
+FA
+FA
+FA
+FA
+"}
+(14,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+Uz
+iA
+cq
+cq
+io
+hx
+hx
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+MN
+cq
+cq
+cq
+cq
+cq
+Gp
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+BW
+Qi
+BW
+ys
+BW
+fX
+BW
+hx
+hx
+hx
+hx
+hx
+nd
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+ex
+bP
+bP
+bP
+fR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+sv
+sv
+ZR
+ZR
+ZR
+sv
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+PD
+PD
+gs
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+rk
+iR
+iR
+lx
+iR
+iR
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(15,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+Mx
+cq
+hx
+hx
+hx
+hx
+hx
+dI
+oY
+cq
+cq
+cq
+IV
+cq
+cq
+cq
+hx
+hx
+hx
+dI
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+QY
+cq
+mA
+rw
+QY
+MN
+MN
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+vI
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+sv
+ZR
+ZR
+ZR
+Nd
+tc
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+Yt
+PD
+gs
+DS
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(16,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+dI
+hx
+hx
+hx
+cq
+cq
+cq
+hx
+cq
+cq
+MN
+cq
+Gp
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+ZR
+ZR
+hH
+ZR
+ZR
+ZR
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+PD
+PD
+gs
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+OR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(17,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+zY
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+Nd
+ZR
+ZR
+ZR
+Nd
+sv
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+yu
+yu
+yu
+yu
+yu
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+ka
+ka
+bB
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(18,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+Pe
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+MN
+cq
+Gp
+cq
+pR
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+LR
+cq
+cq
+cq
+cq
+hx
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+sv
+Ss
+ZR
+ZR
+sv
+sv
+sv
+FA
+FA
+FA
+FA
+FA
+FA
+yu
+ou
+tP
+ZI
+yu
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+wc
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(19,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+lw
+cq
+hx
+hx
+hx
+dy
+cq
+cq
+cq
+pR
+cq
+Gj
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+pn
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+MN
+cq
+cq
+hx
+hx
+JD
+cq
+MN
+cq
+Gp
+cq
+ct
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+Ie
+Ie
+Ie
+Ie
+yu
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VW
+iR
+iR
+iR
+iR
+iR
+iR
+iv
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+FA
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(20,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+QY
+hx
+hx
+hx
+cq
+cq
+AV
+dy
+CZ
+cq
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+Pi
+Pi
+Pi
+Pi
+cq
+cq
+pR
+cq
+cq
+cq
+Gp
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+zZ
+cq
+cq
+cq
+cq
+cq
+oo
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+mr
+mr
+mr
+Ie
+Ie
+mQ
+Ie
+yu
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iv
+iR
+iv
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+FA
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(21,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+MN
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+lC
+cn
+ow
+ik
+cq
+cq
+MN
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+Oa
+hx
+hx
+II
+cq
+cq
+cq
+cq
+cq
+ix
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+nd
+hx
+hx
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+mr
+mr
+FA
+yu
+Ie
+Ie
+Ie
+yu
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+OZ
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+Az
+iR
+iR
+iR
+iR
+iv
+iR
+VG
+VG
+VG
+VG
+FA
+VG
+OZ
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(22,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+cq
+HI
+tl
+cq
+Sz
+cq
+oB
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+dI
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+cq
+hx
+dI
+cq
+hx
+hx
+hx
+hx
+Gp
+hx
+hx
+hx
+hx
+hx
+hx
+kC
+cq
+cq
+cq
+zt
+cq
+Dr
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+rw
+cq
+cq
+iR
+OZ
+iR
+OR
+iR
+BK
+rk
+iR
+iR
+iR
+iR
+iR
+iR
+jb
+jb
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+yu
+yu
+yu
+yu
+yu
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+th
+Bt
+hM
+VG
+VG
+iR
+VW
+iR
+VG
+VG
+iR
+iR
+iR
+VG
+VG
+iR
+iR
+VW
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(23,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+BY
+cq
+cq
+cq
+Gj
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+MN
+cq
+cq
+zt
+cq
+cq
+cn
+Pi
+hx
+cq
+hx
+cq
+HI
+cq
+cq
+MN
+cq
+cq
+cq
+cq
+cq
+lw
+hx
+hx
+yP
+cq
+cq
+cq
+cq
+cq
+Ow
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VW
+iR
+iR
+jb
+oO
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+OR
+VG
+VG
+Co
+iR
+iR
+VG
+VG
+kD
+iv
+iR
+VG
+VG
+iR
+iR
+iR
+rU
+VG
+iv
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(24,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+hx
+hx
+hx
+dI
+cq
+cq
+cq
+ww
+cq
+cq
+hx
+hx
+hx
+Gp
+hx
+hx
+hx
+cq
+cq
+Pa
+Pi
+Gp
+cq
+mm
+Pi
+hx
+cq
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+Qd
+cq
+cq
+cq
+MN
+cq
+ky
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+qn
+jb
+oO
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+PD
+PD
+PD
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+iv
+iR
+kD
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(25,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+yV
+GI
+hx
+hx
+hx
+cq
+cq
+Gj
+oB
+dy
+cq
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+cq
+cn
+MS
+rw
+cq
+cn
+lC
+hx
+MN
+hx
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+QY
+hx
+cq
+hx
+hx
+hx
+cq
+cq
+Gp
+cq
+oY
+hx
+hx
+Gp
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+VG
+rk
+iR
+OZ
+iR
+iR
+iR
+BK
+iR
+iR
+iR
+iR
+Te
+jb
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+PD
+Ky
+PD
+cr
+iR
+iR
+iR
+xk
+iv
+iR
+iR
+sN
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+DS
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(26,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+hx
+hx
+hx
+ZU
+cq
+cq
+cq
+cq
+cq
+dy
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+cq
+cq
+hx
+hx
+hx
+cq
+MN
+cq
+cq
+QQ
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+hx
+hx
+hx
+dI
+hx
+SA
+cq
+pR
+cq
+cq
+cq
+dX
+hx
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+DS
+VG
+VG
+PD
+PD
+PD
+VG
+VG
+iR
+iv
+iR
+iR
+iR
+iv
+iR
+iR
+iR
+iv
+VW
+iR
+iv
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+mf
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(27,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+Pe
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+Pe
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Gp
+hx
+cq
+tf
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+HQ
+cq
+CE
+Pi
+CE
+cq
+cq
+hx
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+It
+VW
+RP
+VG
+VG
+iR
+iR
+iR
+iv
+iR
+kD
+iR
+Ub
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+AO
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(28,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+Gp
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+dI
+hx
+hx
+hx
+cq
+hx
+cq
+cq
+MN
+cq
+cq
+rw
+cq
+cq
+hx
+cq
+cq
+hx
+hx
+hx
+cq
+rw
+MN
+QY
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+bq
+cq
+Pi
+Pi
+Pi
+cq
+cq
+vZ
+iR
+iR
+iR
+iR
+iR
+JG
+iR
+IJ
+iR
+iR
+iR
+OZ
+iR
+iR
+iR
+JG
+VW
+iR
+iR
+iR
+iR
+JG
+iR
+iR
+OR
+iR
+iR
+Es
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+OY
+zb
+iR
+VG
+VG
+iR
+iR
+iR
+VG
+VG
+iR
+iR
+iv
+rU
+VG
+iR
+iR
+iv
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(29,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+Ez
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+cq
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+dI
+cq
+cq
+cq
+cq
+cq
+hx
+Tj
+cq
+CE
+Pi
+CE
+cq
+cq
+cq
+iR
+iR
+iR
+iR
+UL
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+BK
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+iq
+iR
+iR
+iR
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+VG
+VG
+iR
+iR
+iR
+VG
+VG
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+ZV
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(30,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+cq
+hx
+hx
+Mz
+Mx
+cq
+pR
+cq
+cq
+cq
+cq
+pR
+cq
+Mx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+LW
+cq
+Pi
+Pi
+Pi
+cq
+cq
+hx
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+WI
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+rg
+iR
+iR
+iR
+iv
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(31,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+oY
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+Gp
+hx
+hx
+Mx
+cq
+cq
+cq
+RU
+cq
+RU
+AP
+RU
+cq
+Mx
+hx
+hx
+hx
+cq
+Gp
+cq
+MN
+cq
+oY
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+Mx
+cq
+CE
+Pi
+CE
+de
+cq
+hx
+VG
+BK
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+VW
+iR
+iR
+iR
+iv
+iR
+iv
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+An
+iR
+kb
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(32,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+Gp
+pR
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+Gp
+pR
+cq
+cq
+cq
+cq
+pR
+cq
+hx
+dI
+hx
+hx
+Mx
+cq
+Rx
+cq
+zl
+cq
+zl
+cq
+zl
+cq
+Mx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Mx
+cq
+Pi
+SJ
+Pi
+cq
+cq
+hx
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+wc
+OY
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+DS
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(33,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+Aa
+cq
+nd
+cq
+cq
+cq
+nd
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+MN
+cq
+nd
+cq
+cq
+QY
+hx
+cq
+hx
+hx
+Mx
+cq
+Rx
+cq
+zl
+cq
+zl
+cq
+zl
+cq
+Mx
+QQ
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+nd
+cq
+cq
+HI
+cq
+CE
+Pi
+CE
+cq
+cq
+hx
+VG
+DS
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+iR
+Al
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+Rr
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+vq
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(34,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+cq
+MN
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+Xz
+cq
+cq
+IV
+EL
+cq
+EL
+cq
+EL
+nd
+Mx
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+pR
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+Mx
+cq
+cq
+cq
+cq
+cq
+rF
+hx
+VG
+iR
+VG
+VG
+VG
+nv
+PC
+nv
+iR
+nv
+iR
+nv
+IJ
+nv
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+Vz
+VG
+VG
+VG
+VG
+iR
+DS
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+gl
+XP
+XP
+IK
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+WI
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(35,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+dI
+cq
+cq
+QY
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+nd
+hx
+hx
+Mx
+Mx
+cq
+rw
+cq
+cq
+cq
+cq
+rw
+cq
+Mx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+bp
+cq
+yW
+cq
+cq
+cq
+PV
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+iR
+Tw
+iR
+Jk
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+XP
+XP
+XP
+XP
+VG
+VG
+VG
+iR
+BK
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+AI
+XP
+XP
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+CC
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(36,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+MN
+cq
+nd
+cq
+cq
+JF
+cq
+cq
+hx
+MN
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+vI
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+vI
+hx
+hx
+hx
+hx
+hx
+hx
+vI
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+Mx
+Hr
+Mx
+Mx
+Hr
+Mx
+hx
+oY
+hx
+hx
+Fd
+cq
+cq
+Lv
+rw
+cq
+PV
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+Hh
+XP
+XP
+mY
+XP
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+XP
+BQ
+XP
+iR
+iR
+iR
+iR
+rk
+OZ
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+iR
+iR
+iR
+iR
+rk
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(37,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+Gp
+cq
+cq
+cq
+cq
+cq
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+AA
+cq
+AA
+hx
+hx
+cq
+cq
+cq
+hx
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+Mx
+cq
+cq
+cq
+cq
+Mx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+vw
+SU
+XP
+XP
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+mf
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+DS
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(38,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+cq
+rw
+cq
+nd
+hx
+cq
+hx
+hx
+hx
+hx
+vH
+hx
+hx
+hx
+MN
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+pR
+cq
+cq
+hx
+hx
+hx
+hx
+Mx
+cq
+dy
+dy
+cq
+Mx
+hx
+dI
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+OZ
+VG
+VG
+VG
+iR
+iR
+Qr
+rk
+XH
+KT
+mM
+ZX
+VM
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+XR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+rk
+PE
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(39,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+AA
+cq
+AA
+hx
+hx
+hx
+hx
+QY
+hx
+hx
+kY
+hx
+hx
+hx
+hx
+hx
+hx
+nd
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Mx
+cq
+dy
+dy
+cq
+Mx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+Rr
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(40,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+ey
+cq
+hx
+hx
+hx
+hx
+hx
+OK
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Mx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+MN
+IV
+cq
+cq
+nd
+cq
+cq
+cq
+cq
+JG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+OZ
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(41,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+rd
+rd
+rd
+rd
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Mx
+cq
+tl
+tl
+cq
+Mx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+Rr
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(42,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+rd
+Qa
+IM
+rd
+hx
+hx
+cq
+cq
+cq
+LT
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Bn
+cq
+cq
+cq
+MN
+pR
+cq
+cq
+cq
+cq
+ME
+cq
+Nj
+pR
+cq
+cq
+cq
+Gp
+cq
+pR
+Hf
+tf
+Yl
+hx
+hx
+Mx
+cq
+tl
+tl
+cq
+Mx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+JG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+JG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+VW
+JG
+iR
+iR
+iR
+iR
+iR
+iR
+BK
+JG
+iR
+VW
+iR
+iR
+OZ
+iR
+iR
+JG
+iR
+iR
+iR
+iR
+iR
+iR
+JG
+IJ
+iR
+iR
+iR
+OZ
+iR
+JG
+OR
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(43,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+rd
+IM
+IM
+rd
+hx
+hx
+dI
+Dw
+HI
+cq
+cq
+hx
+hx
+cq
+cq
+mv
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+oY
+cq
+cq
+ey
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+vZ
+Mx
+Mx
+cq
+cq
+cq
+cq
+Mx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+vI
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+OZ
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+kb
+iR
+iR
+iR
+iR
+iR
+iR
+VW
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+ZV
+iR
+iR
+iR
+iR
+iR
+OR
+iR
+iR
+iR
+iR
+iR
+QO
+iR
+OZ
+iR
+iR
+iR
+iR
+VW
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(44,1,1) = {"
+Vm
+Vm
+Vm
+hx
+hx
+hx
+rd
+IM
+IM
+rd
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+nc
+cq
+Pe
+hx
+hx
+hx
+am
+cq
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+ov
+cq
+cq
+cq
+Mx
+Mx
+MQ
+Mx
+Mx
+MQ
+Mx
+hx
+dI
+hx
+hx
+hx
+cq
+cq
+LR
+cq
+cq
+eS
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+OR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(45,1,1) = {"
+Vm
+Vm
+Vm
+hx
+hy
+ml
+rd
+IM
+IM
+eD
+hx
+hx
+cq
+cq
+cq
+cq
+QY
+hx
+hx
+cq
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+ZH
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cu
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+ya
+cq
+cq
+cq
+cq
+cq
+hx
+VG
+OR
+VG
+VG
+VG
+iR
+Dt
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+JG
+VW
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(46,1,1) = {"
+Vm
+Vm
+Vm
+hx
+hx
+hx
+rd
+pp
+IM
+rd
+hx
+hx
+hx
+nf
+cq
+cq
+hx
+hx
+hx
+hx
+vI
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+rw
+cq
+cq
+yX
+cq
+cq
+cq
+li
+sp
+cq
+cq
+oY
+cq
+cq
+rw
+cq
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+ya
+cq
+cq
+cq
+cq
+kL
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+iR
+JG
+iR
+iR
+OZ
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+JG
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+OR
+iR
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+OR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(47,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+rd
+IM
+IM
+rd
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+QH
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+MN
+hx
+hx
+hx
+cq
+cq
+cq
+cV
+cV
+cq
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+DS
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+su
+iR
+oT
+iR
+Ts
+iR
+iR
+iR
+DS
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(48,1,1) = {"
+Vm
+Vm
+Vm
+hx
+hx
+hx
+rd
+IM
+IM
+rd
+hx
+Jw
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+oY
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+UU
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+UL
+iR
+VG
+VG
+yD
+VG
+VG
+VG
+OZ
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+IJ
+OZ
+GK
+iR
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(49,1,1) = {"
+Vm
+Vm
+Vm
+hx
+cq
+cq
+rd
+IM
+IM
+eD
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+pZ
+cq
+pR
+cq
+hx
+hx
+cq
+cq
+hx
+hx
+cq
+cq
+Wv
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+fd
+iR
+iR
+iR
+El
+ry
+IJ
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+OZ
+XP
+Fx
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+iR
+iR
+iR
+VW
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(50,1,1) = {"
+Vm
+Vm
+Vm
+hx
+MN
+hx
+rd
+IM
+Qa
+rd
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+Xq
+hx
+hx
+dI
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+YY
+pR
+cq
+zQ
+hx
+hx
+hx
+So
+hg
+Pi
+ax
+cq
+pR
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+Yf
+iR
+xF
+iR
+iR
+IO
+iR
+VG
+VG
+VG
+iR
+DS
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+DS
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+XP
+OL
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+iR
+iR
+rk
+VW
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(51,1,1) = {"
+Vm
+Vm
+Vm
+hx
+cq
+hx
+rd
+IM
+IM
+rd
+cq
+cq
+cq
+MN
+cq
+cq
+xv
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+oY
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+QY
+CG
+cq
+cq
+cq
+cq
+cq
+MN
+rw
+cq
+cq
+QQ
+cq
+cq
+cq
+cq
+Mi
+hx
+hx
+hx
+Pc
+Pc
+Pc
+oM
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+MN
+cq
+JG
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+fd
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+Ts
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+XP
+OL
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(52,1,1) = {"
+Vm
+Vm
+Vm
+hx
+cq
+hx
+rd
+rd
+rd
+rd
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+qH
+hx
+hx
+cq
+MN
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+bW
+Nc
+Nc
+vd
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+IW
+cq
+AL
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+ey
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+VG
+VG
+VG
+VG
+iR
+cP
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+IO
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+iR
+iR
+OZ
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+OZ
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(53,1,1) = {"
+Vm
+hx
+hx
+hx
+cq
+hx
+hx
+eK
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+dI
+Os
+cq
+Dr
+hx
+hx
+cq
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+dI
+NS
+yE
+yE
+NS
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+jF
+cq
+cq
+cq
+cq
+QQ
+cq
+cq
+MN
+cq
+IV
+cq
+cq
+NF
+Yk
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+VG
+VG
+VG
+VG
+iR
+Ho
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+OZ
+rR
+iR
+hR
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+WX
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(54,1,1) = {"
+Vm
+hx
+dI
+cq
+cq
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+ct
+hx
+hx
+cq
+cq
+nd
+cq
+cq
+MN
+cq
+cq
+cq
+JA
+Nc
+Nc
+CH
+cq
+cq
+cq
+cq
+oY
+hx
+hx
+NT
+cq
+rw
+MP
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+MN
+cq
+Yz
+wP
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+WI
+iR
+VG
+VG
+VG
+iR
+bG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+UL
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+iR
+Ec
+iR
+cL
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(55,1,1) = {"
+Vm
+hx
+cq
+hx
+cq
+hx
+hx
+cq
+lw
+hx
+hx
+cq
+cq
+pR
+Gp
+hx
+hx
+hx
+hx
+DY
+cq
+cq
+oo
+hx
+hx
+zY
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+OT
+NS
+yE
+Nn
+NS
+Pe
+hx
+hx
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+sL
+sL
+rw
+cq
+cq
+Yz
+hg
+hx
+hx
+hx
+tO
+cq
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+OU
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+Rr
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+WI
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+iR
+ns
+pa
+DQ
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(56,1,1) = {"
+Vm
+hx
+cq
+hx
+cq
+hx
+hx
+cq
+Pe
+hx
+hx
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+Hd
+cq
+dB
+Sy
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+Mo
+Nc
+Nc
+cR
+cq
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+VG
+iR
+VG
+VG
+VG
+iR
+EV
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+OZ
+VG
+VG
+VG
+VG
+VG
+fY
+iR
+iR
+iR
+kj
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+pa
+dT
+VG
+FA
+FA
+FA
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(57,1,1) = {"
+Vm
+hx
+cq
+hx
+oY
+hx
+hx
+cq
+cq
+hx
+hx
+nd
+hx
+hx
+MN
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+Gp
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+kg
+cq
+ng
+YG
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+dI
+cq
+cq
+MN
+cq
+iR
+iR
+VG
+VG
+VG
+iR
+fj
+VG
+iR
+VG
+oX
+JG
+iR
+xs
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+OZ
+iR
+iR
+iR
+VG
+VG
+VG
+iR
+UL
+VG
+VG
+VG
+VG
+VG
+Vz
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+JG
+IJ
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(58,1,1) = {"
+Vm
+hx
+cq
+hx
+cq
+hx
+hx
+cq
+nd
+hx
+hx
+QY
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+nd
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Pe
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+dv
+iR
+iR
+iR
+Ts
+iR
+iR
+iR
+ev
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+PM
+iR
+JG
+iR
+iR
+iR
+iR
+iR
+iR
+DS
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+Vl
+iR
+iR
+iR
+iR
+iR
+OR
+iR
+iR
+iR
+iR
+UU
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(59,1,1) = {"
+Vm
+hx
+IV
+hx
+cq
+cq
+MN
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+cq
+By
+cq
+cq
+PX
+hx
+hx
+hx
+hx
+hx
+TX
+cq
+cq
+Gp
+hx
+hx
+Is
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+zb
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+rk
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+iR
+DS
+VG
+VG
+VG
+OR
+iR
+iR
+DS
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+oT
+VW
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(60,1,1) = {"
+Vm
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+MN
+cq
+cq
+cq
+zt
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+cu
+hx
+hx
+cq
+eQ
+cq
+cq
+cq
+cq
+MN
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+DS
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+iR
+iR
+iR
+IJ
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+kb
+iR
+VG
+VG
+VG
+VG
+VG
+wD
+ot
+MD
+ot
+ot
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+OZ
+iR
+iR
+iR
+IJ
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(61,1,1) = {"
+Vm
+hx
+cq
+hx
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+yS
+pR
+cq
+Pi
+pU
+cq
+pR
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+dI
+cq
+cq
+cq
+cq
+cq
+cq
+to
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cu
+Gp
+cq
+cu
+hx
+hx
+ww
+cq
+cq
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+iR
+VG
+VG
+VG
+qM
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+OZ
+iR
+rk
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+aZ
+OZ
+iR
+gd
+VG
+VG
+VG
+OZ
+iR
+VG
+VG
+VG
+VG
+VG
+OZ
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+IJ
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+"}
+(62,1,1) = {"
+Vm
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+yS
+cq
+cq
+Pi
+Pi
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+QY
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+Pe
+hx
+hx
+hq
+cq
+cq
+Pe
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+hx
+hx
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+Xx
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+BK
+iR
+iR
+UL
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+Rr
+VG
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+"}
+(63,1,1) = {"
+Vm
+hx
+dI
+hx
+oQ
+cq
+pR
+cq
+dy
+hx
+hx
+cq
+cq
+ZM
+Pi
+Pi
+NR
+cq
+Gc
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+Fk
+cq
+cq
+By
+cq
+hx
+cq
+cq
+pn
+hx
+cq
+cq
+CO
+cq
+hx
+hx
+cq
+cq
+cq
+hq
+hx
+hx
+Pe
+hx
+hx
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+UE
+kd
+qK
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+OZ
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+OZ
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+JG
+iR
+KK
+XP
+VG
+FA
+FA
+FA
+FA
+"}
+(64,1,1) = {"
+Vm
+hx
+cq
+hx
+Tq
+cq
+MN
+cq
+Uh
+hx
+hx
+Cw
+cq
+yM
+Pi
+Pi
+cn
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+MN
+hx
+hx
+hx
+cu
+cq
+cq
+Gp
+vZ
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+cq
+hx
+hx
+qK
+mS
+WG
+mS
+mS
+mS
+mS
+mS
+mS
+mS
+WG
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+ZV
+iR
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+OZ
+DS
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+BK
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+hE
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+Fc
+LM
+VG
+FA
+FA
+FA
+FA
+"}
+(65,1,1) = {"
+Vm
+hx
+cq
+hx
+od
+cq
+cq
+SB
+CZ
+hx
+hx
+UB
+cq
+gj
+Pi
+Pi
+Gv
+cq
+cq
+cq
+cq
+kS
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+dI
+hx
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+Gp
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+li
+hx
+hx
+cq
+hx
+hx
+qK
+JI
+fg
+mS
+mS
+mS
+mS
+mS
+mS
+mS
+jw
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+iR
+rk
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+rk
+iR
+iR
+iR
+iR
+OR
+iR
+iR
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+OZ
+VG
+VG
+VG
+VG
+iR
+hE
+iR
+iR
+iR
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+Fc
+XP
+VG
+FA
+FA
+FA
+FA
+"}
+(66,1,1) = {"
+Vm
+hx
+Gp
+hx
+hx
+hx
+vI
+hx
+hx
+hx
+hx
+ww
+cq
+eH
+Pi
+Pi
+Au
+cq
+cq
+cq
+rw
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+cq
+cu
+dl
+hx
+hx
+cq
+cq
+hq
+cq
+hx
+hx
+cq
+cq
+QY
+pq
+mS
+mS
+WG
+WG
+mS
+mS
+WG
+WG
+mS
+hL
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+DS
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+iR
+iR
+iR
+hE
+iR
+VG
+VG
+iR
+iR
+iR
+VW
+iR
+Fc
+yr
+VG
+FA
+FA
+FA
+FA
+"}
+(67,1,1) = {"
+Vm
+hx
+cq
+MN
+cq
+cq
+cq
+hx
+Vm
+Vm
+hx
+cq
+cq
+cq
+Pi
+Pi
+cq
+eM
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+pR
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+MN
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+MN
+cq
+UE
+mS
+mS
+dc
+dc
+mS
+mS
+dc
+Zn
+mS
+WG
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+VW
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+ZV
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+hE
+rk
+iR
+iR
+iR
+VG
+VG
+iR
+rk
+iR
+iR
+iR
+Fc
+OL
+VG
+FA
+FA
+FA
+FA
+"}
+(68,1,1) = {"
+Vm
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+Vm
+Vm
+hx
+Pd
+cq
+cq
+Pi
+GS
+cq
+cq
+cq
+hx
+hx
+cq
+hx
+hx
+hx
+Yl
+HI
+cq
+cq
+MO
+cq
+cq
+tf
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+qK
+mS
+mS
+Zn
+dc
+mS
+mS
+dc
+dc
+mS
+fg
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+oT
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+IJ
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+IJ
+my
+iR
+iR
+iR
+IJ
+iR
+VG
+VG
+VG
+Vz
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+"}
+(69,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+dI
+hx
+Vm
+Vm
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+hx
+hx
+hx
+cq
+Pe
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+qK
+mS
+mS
+hL
+hL
+mS
+mS
+hL
+hL
+mS
+hL
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+rk
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+rk
+iR
+iR
+iR
+iR
+iR
+iR
+OZ
+tL
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+Wb
+iR
+iR
+iR
+iR
+DS
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+"}
+(70,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+Yl
+hx
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+MN
+hx
+hx
+hx
+KX
+cq
+cq
+hx
+hx
+hx
+cq
+He
+hx
+hx
+hx
+hx
+Oq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+yv
+cq
+Xp
+hx
+qK
+mS
+mS
+mS
+mS
+mS
+mS
+mS
+mS
+mS
+mS
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+Fb
+my
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+iR
+OR
+iR
+iR
+OZ
+iR
+iR
+iR
+iR
+OZ
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+"}
+(71,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+yV
+cq
+cq
+nd
+cq
+cq
+cq
+MN
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+Pe
+hx
+qK
+sT
+Qj
+Qj
+Qj
+Qj
+Qj
+Qj
+Qj
+Qj
+Qj
+qK
+hx
+iR
+DS
+VG
+VG
+VG
+iR
+OZ
+VG
+iR
+iR
+iR
+iR
+iR
+iR
+OZ
+iR
+iR
+rk
+iR
+Jk
+iR
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+gI
+my
+iR
+iR
+iR
+OZ
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(72,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+cq
+cq
+cq
+cq
+rw
+cq
+MN
+cq
+cq
+cq
+oY
+cq
+cq
+rw
+cq
+cq
+hx
+hx
+hx
+cq
+cq
+cq
+Gp
+pg
+cq
+cq
+cq
+cq
+IV
+cq
+cq
+cq
+MN
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+OK
+cq
+cq
+cq
+cq
+hx
+qK
+sT
+dN
+dc
+Iu
+Gy
+Zb
+Gy
+dc
+Gy
+Vh
+qK
+hx
+OZ
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+bX
+rk
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+OZ
+VG
+VG
+VG
+VG
+VG
+iR
+VW
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+my
+iR
+VW
+iR
+iR
+NZ
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(73,1,1) = {"
+Vm
+Vm
+Vm
+Vm
+Vm
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+rw
+cq
+cq
+cq
+cq
+cq
+cq
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+hx
+cq
+cq
+cq
+hx
+qK
+Hs
+RR
+Hs
+Hs
+Hs
+UP
+Hs
+Hs
+Hs
+Hs
+qK
+hx
+iR
+iR
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+Bh
+cT
+yl
+yl
+Ym
+KA
+yl
+yl
+Bh
+VG
+VG
+VG
+VG
+VG
+iR
+iR
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+iR
+VG
+VG
+VG
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+FA
+"}
+(74,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+iE
+iE
+hv
+iE
+iE
+iE
+iE
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+gJ
+iE
+iE
+Nb
+qK
+Hs
+Hs
+Hs
+Hs
+Hs
+Hs
+Hs
+Hs
+Hs
+Hs
+qK
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+CK
+Ch
+ds
+ds
+Ch
+Qb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Na
+Ab
+cT
+yl
+yl
+vM
+yl
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+nx
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(75,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+KG
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+du
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+qK
+EA
+Hs
+Hs
+Hs
+Hs
+EA
+Hs
+Hs
+Hs
+HZ
+qK
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+aE
+pE
+Bh
+Bh
+Bh
+Bh
+yd
+lz
+Fw
+gf
+dU
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+Bh
+Bh
+Bh
+yl
+yl
+yl
+yl
+Na
+yl
+cT
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+yd
+yd
+Qq
+PY
+yd
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+"}
+(76,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+dW
+KG
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+Nb
+qK
+qK
+qK
+qK
+wT
+qK
+qK
+qK
+wT
+qK
+qK
+qK
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+ma
+HY
+Fw
+dU
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+pd
+pd
+pd
+pd
+pd
+pd
+pd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+XC
+yd
+Bh
+Bh
+ux
+wZ
+Vt
+qp
+yd
+Bh
+Bh
+Bh
+Sv
+Bh
+Bh
+Bh
+eN
+yd
+pE
+Bh
+LP
+LP
+LP
+LP
+LP
+"}
+(77,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+LB
+cj
+iE
+iE
+iE
+Nb
+Nb
+Nb
+bu
+Nb
+Nb
+GW
+iE
+iE
+iE
+Nb
+Nb
+uh
+Ze
+Ze
+Ze
+Ze
+iE
+iE
+iE
+ag
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Nb
+iE
+iE
+Nb
+qK
+zP
+zP
+ll
+Hs
+Hs
+qK
+up
+Hs
+iF
+IB
+qK
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+lz
+nP
+Fw
+dU
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+yd
+yd
+dH
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+wO
+Bh
+LP
+LP
+LP
+LP
+LP
+"}
+(78,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+lJ
+iE
+pS
+iE
+iE
+iE
+iE
+kh
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+iE
+Nb
+Nb
+aD
+Ze
+KJ
+KC
+Ze
+iE
+iE
+iE
+iE
+Nb
+Nb
+Zc
+iE
+VF
+iE
+iE
+Nb
+Nb
+Bl
+Bl
+Nb
+iE
+bI
+Nb
+qK
+US
+Hs
+Hs
+Hs
+Hs
+IE
+Hs
+Hs
+Hs
+el
+qK
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+lz
+Fw
+QS
+dU
+yd
+Bh
+Bh
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+Kq
+yd
+fa
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+yd
+yd
+Ou
+yd
+yd
+yd
+IC
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+yd
+eN
+Bh
+LP
+LP
+LP
+LP
+LP
+"}
+(79,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+dj
+Nb
+Nb
+mq
+Ze
+bc
+KJ
+Ze
+iE
+iE
+iE
+iE
+Nb
+Nb
+jf
+iE
+iE
+iE
+iE
+pJ
+Nb
+Bl
+Bl
+Nb
+iE
+uk
+Nb
+qK
+uY
+Hs
+Hs
+Hs
+Hs
+qK
+Hs
+Hs
+Hs
+Hs
+qK
+Nb
+eN
+HB
+Bh
+Bh
+Bh
+eN
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+lz
+rD
+HY
+dU
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+ux
+vj
+yd
+yd
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+"}
+(80,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+dW
+KG
+lJ
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Dx
+iE
+iE
+iE
+LB
+iE
+Nb
+Nb
+Nb
+iE
+bI
+Nb
+iE
+Nb
+Nb
+fn
+Ze
+Ze
+Ze
+Ze
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Lx
+iE
+iE
+jH
+iE
+Nb
+Bl
+Bl
+Nb
+iE
+iE
+Nb
+qK
+tF
+YK
+BM
+GN
+Sk
+qK
+PA
+VN
+Hs
+Hs
+qK
+Nb
+yd
+yd
+Gt
+ok
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+CK
+qI
+ds
+ds
+qI
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+XC
+Ou
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+"}
+(81,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+jL
+dj
+iE
+xo
+fn
+iE
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+xS
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+qK
+Nb
+yd
+Sv
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+"}
+(82,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+id
+du
+iE
+iE
+iE
+fn
+Jj
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+iE
+iE
+iE
+iE
+iE
+dj
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Nb
+Nb
+zj
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+yd
+yd
+Ch
+yd
+yd
+Bh
+Bh
+Bh
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+SP
+Lg
+yd
+DM
+yl
+Bh
+LP
+LP
+LP
+LP
+"}
+(83,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+nM
+iE
+Nb
+Nb
+Nb
+DW
+iE
+iE
+fn
+xo
+iE
+Nb
+Nb
+Nb
+iE
+Kh
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Bl
+Nb
+Nb
+Yi
+iE
+iE
+iE
+iE
+Nb
+iE
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+wg
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+FJ
+yd
+yd
+yd
+yd
+zh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+eN
+Bh
+Bh
+yl
+Lg
+yd
+Zy
+ZF
+Bh
+LP
+LP
+LP
+LP
+"}
+(84,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+qD
+iE
+Nb
+Bl
+Nb
+zj
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+LE
+iE
+iE
+LB
+iE
+iE
+iE
+Nb
+Bl
+Nb
+Nb
+lv
+iE
+iE
+iE
+iE
+Nb
+iE
+Nb
+Nb
+iE
+jL
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+yd
+yd
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+pE
+Bh
+Bh
+yd
+Sw
+yd
+yd
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Cj
+Lg
+yd
+Xm
+Ml
+Bh
+LP
+LP
+LP
+LP
+"}
+(85,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+dW
+iE
+Nb
+Bl
+Nb
+Yi
+hv
+ag
+Sp
+If
+aY
+Nb
+Bl
+Nb
+wy
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+eG
+fc
+fc
+fc
+fc
+fc
+vx
+Nb
+Bl
+Nb
+Nb
+WE
+iE
+iE
+iE
+FL
+Nb
+iE
+Nb
+Nb
+iE
+iE
+hv
+iE
+iE
+iE
+iE
+iE
+iE
+hv
+dj
+iE
+iE
+Un
+iE
+iE
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+yd
+yd
+Vq
+Ex
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+Ch
+yd
+yd
+yd
+yd
+pE
+yd
+yd
+Lc
+Bh
+Bh
+Na
+Lg
+yd
+Zy
+gi
+Bh
+LP
+LP
+LP
+LP
+"}
+(86,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+wX
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+Ci
+iE
+iE
+iE
+iE
+AN
+tT
+Nb
+Bl
+Nb
+Nb
+Lx
+iE
+iE
+VF
+iE
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Ou
+yd
+yd
+yd
+Ch
+yd
+yd
+Bh
+yd
+uM
+Vt
+yd
+yd
+zh
+Bh
+Bh
+yd
+Bh
+Sc
+yd
+yd
+eL
+lN
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+uf
+Lg
+yd
+Zy
+yl
+Bh
+LP
+LP
+LP
+LP
+"}
+(87,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+dj
+jL
+gh
+iE
+Cb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+Vw
+yy
+yy
+yy
+yy
+yy
+OM
+Nb
+Bl
+Nb
+Us
+iE
+iE
+iE
+iE
+wX
+Nb
+hv
+iE
+iE
+iE
+iE
+iE
+iE
+dj
+iE
+hv
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+pE
+Bh
+yd
+Vt
+dS
+yd
+yd
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+yd
+yd
+nw
+CB
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+"}
+(88,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+vS
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Nb
+Zc
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+yd
+Vt
+uM
+yd
+yd
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+Xh
+yd
+yd
+yd
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(89,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Un
+iE
+iE
+iE
+iE
+Nb
+Bl
+Nb
+iE
+bI
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+JS
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+dj
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+dj
+iE
+iE
+yd
+yd
+yd
+yd
+yd
+gW
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+XM
+yd
+Nm
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(90,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+jL
+Nb
+Bl
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+rJ
+iE
+iE
+hv
+wX
+iE
+iE
+dj
+iE
+iE
+iE
+hv
+iE
+iE
+rv
+iE
+iE
+hv
+iE
+iE
+iE
+GE
+yd
+yd
+qI
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Lc
+yd
+pE
+yd
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(91,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Nb
+rv
+iE
+iE
+iE
+iE
+iE
+iE
+LB
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+du
+Nb
+Nb
+iE
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+zh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+ux
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+zh
+Wi
+sw
+MK
+MK
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Ou
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(92,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+iE
+iE
+cA
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+dj
+Nb
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+vB
+iE
+LB
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+vU
+Nb
+iE
+iE
+iE
+Nb
+iE
+Nb
+yd
+Pt
+yd
+yd
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Sv
+Bh
+Bh
+Bh
+Bh
+eN
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+yd
+yd
+eN
+yd
+pE
+yd
+yd
+Ou
+yd
+yd
+eN
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(93,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+hv
+iE
+iE
+wX
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+xn
+iE
+LB
+iE
+iE
+fk
+FV
+Nb
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+iE
+gH
+bI
+Nb
+iE
+iE
+yd
+yd
+Ni
+sA
+Bh
+Bh
+yd
+gZ
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+"}
+(94,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+yJ
+gM
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+DH
+iE
+iE
+iE
+jL
+LB
+iE
+iE
+iE
+iE
+dj
+iE
+iE
+iE
+iE
+Nb
+iE
+iE
+iE
+Nb
+iE
+Nb
+yd
+Ni
+yd
+Sv
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+lt
+Vt
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+bA
+yd
+yd
+yd
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+yd
+yd
+Bh
+Bh
+NG
+sq
+yd
+Zy
+yl
+Bh
+LP
+LP
+LP
+LP
+"}
+(95,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+bI
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+OW
+fn
+bn
+iE
+iE
+Im
+FV
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+iE
+Nb
+iE
+Nb
+sA
+yd
+yd
+yd
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+PY
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+eN
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+gZ
+yd
+yd
+yd
+Bh
+Bh
+yd
+yd
+yd
+Zy
+SP
+Bh
+LP
+LP
+LP
+LP
+"}
+(96,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+iE
+Ti
+fn
+iE
+iE
+lg
+pv
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+vU
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+ux
+Lc
+yd
+yd
+yd
+yd
+qI
+yd
+yd
+yd
+yd
+eN
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Lc
+Bh
+Bh
+yd
+yd
+yd
+yd
+cf
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+qI
+yd
+yd
+yd
+yd
+yd
+yd
+Zy
+iW
+Bh
+LP
+LP
+LP
+LP
+"}
+(97,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Nb
+qJ
+iE
+LB
+wX
+iE
+iE
+iE
+az
+iE
+sr
+fn
+iE
+iE
+yJ
+FV
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+LB
+iE
+iE
+dj
+iE
+vU
+iE
+iE
+iE
+LB
+mz
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+yO
+hv
+gh
+iE
+iE
+LB
+RT
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+fi
+yd
+Ph
+Vt
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+cf
+yd
+yY
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+cy
+aE
+yd
+Zy
+yl
+Bh
+LP
+LP
+LP
+LP
+"}
+(98,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+GP
+Fe
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+iE
+RT
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+tR
+yd
+Vt
+tn
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+JU
+Zy
+yd
+zh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+cf
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+XC
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+eN
+yd
+yd
+Zy
+cT
+Bh
+LP
+LP
+LP
+LP
+"}
+(99,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+vU
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+hv
+iE
+iE
+uV
+ty
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+wX
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+nq
+hv
+gh
+iE
+iE
+iE
+df
+Bh
+eN
+Bh
+Bh
+Bh
+yd
+XC
+Bh
+Bh
+Bh
+Bh
+yd
+Nm
+yd
+yd
+uT
+Bh
+Bh
+Bh
+Bh
+Bh
+eN
+Zy
+yd
+eN
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+Ag
+yd
+yd
+yd
+yd
+yd
+yd
+Ag
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+"}
+(100,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+db
+iE
+iE
+iE
+yd
+yd
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+Zy
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+cf
+yd
+zW
+yd
+yd
+yd
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(101,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+dj
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+fn
+sG
+LB
+Qw
+aF
+Qw
+es
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+yO
+hv
+gh
+iE
+iE
+iE
+iE
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Uw
+wG
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+cf
+LJ
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+bE
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(102,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+PZ
+iE
+iE
+ES
+Ha
+PN
+Za
+iE
+Nb
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+iE
+eR
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+aj
+Xg
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+hj
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(103,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+QJ
+iE
+iE
+fh
+Hc
+vi
+iE
+bI
+Nb
+Nb
+Nb
+Nb
+Nb
+uP
+hv
+gh
+iE
+iE
+iE
+QB
+Bh
+Bh
+Bh
+Bh
+Bh
+Ou
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(104,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+LB
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+ql
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+XI
+MF
+QL
+XI
+Ha
+MF
+XI
+Nb
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+Lc
+yd
+yd
+yd
+yd
+yd
+Ou
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+XC
+yd
+yd
+yd
+yd
+Lc
+yd
+eN
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+eN
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(105,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Cb
+iE
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Nb
+Nb
+Nb
+Bl
+Nb
+iE
+iE
+iE
+LH
+iE
+LH
+iE
+iE
+Nb
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+bI
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+fu
+FP
+yd
+yd
+yd
+yd
+qI
+yd
+Xj
+yd
+pE
+yd
+qI
+yd
+eN
+yd
+yd
+yd
+yd
+qI
+yd
+yd
+Xj
+yd
+yd
+yd
+qI
+yd
+yd
+yd
+yd
+yd
+zh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(106,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+ag
+iE
+iE
+iE
+pI
+gM
+Nb
+Nb
+Un
+Nb
+Nb
+iE
+DF
+Nb
+dj
+Nb
+Bl
+Bl
+Hz
+Hz
+Lm
+Lm
+Lm
+Hz
+Hz
+Bl
+Bl
+Nb
+Nb
+dW
+Nb
+Nb
+Nb
+EU
+Nb
+Bl
+Nb
+iE
+iE
+iE
+LH
+iE
+LH
+iE
+iE
+Nb
+iE
+nJ
+iE
+iE
+iE
+iE
+iE
+du
+iE
+iE
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(107,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+CX
+pt
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+iE
+Nb
+Bl
+Bl
+Hz
+Lm
+Lm
+Lm
+Lm
+Lm
+Hz
+Bl
+Bl
+Nb
+jL
+iE
+iE
+iE
+dj
+iE
+Nb
+Bl
+Nb
+iE
+XI
+MF
+QL
+XI
+Ha
+MF
+XI
+Nb
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+mT
+os
+Rw
+os
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(108,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Lf
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Zk
+iE
+Nb
+iE
+Nb
+Bl
+Bl
+Lm
+Lm
+Lm
+Lm
+Lm
+Lm
+Lm
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Bl
+Nb
+dW
+iE
+iE
+LH
+iE
+LH
+iE
+iE
+Nb
+iE
+iE
+iE
+Nb
+Bl
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+eW
+os
+pz
+os
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(109,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+Md
+Em
+Nb
+vB
+iE
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Bl
+Bl
+Lm
+Lm
+Lm
+Hz
+Lm
+Lm
+Lm
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Nb
+iE
+iE
+iE
+LH
+iE
+LH
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Nb
+nI
+LB
+iE
+iE
+iE
+fn
+Bh
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Ff
+os
+os
+os
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+eN
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(110,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+rJ
+iE
+iE
+iE
+GP
+ty
+Nb
+iE
+wX
+Nb
+Nb
+iE
+vU
+Nb
+Nb
+Nb
+Bl
+Bl
+Lm
+Lm
+Lm
+Lm
+Lm
+Lm
+Lm
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Nb
+iE
+XI
+MF
+PN
+XI
+Hc
+MF
+XI
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+ga
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+wg
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(111,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Bf
+Pp
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Hz
+Lm
+Lm
+Lm
+Lm
+Lm
+Lm
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+sM
+iE
+iE
+iE
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+pE
+yd
+Lc
+qI
+yd
+Dh
+Bh
+Bh
+Bh
+Bh
+Ed
+yd
+Ch
+yd
+KO
+yd
+Ch
+yd
+ob
+Bh
+Bh
+Bh
+Bh
+ux
+yd
+Bh
+Bh
+Bh
+eN
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(112,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+ID
+Bf
+Bf
+ID
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Hz
+Hz
+Lm
+Lm
+Lm
+Lm
+Hz
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+dW
+Nb
+Bl
+Nb
+fV
+sG
+XQ
+iE
+hv
+iE
+Ig
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+xz
+iE
+iE
+iE
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Lc
+yd
+Bh
+Bh
+Bh
+yd
+Gh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(113,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Bl
+ID
+Bf
+Bf
+ID
+Bl
+Nb
+RM
+iE
+hv
+jL
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+cI
+cI
+cI
+OJ
+cI
+cI
+cI
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+iE
+vU
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+MA
+iE
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+cb
+yd
+kw
+GF
+kw
+kw
+ZO
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(114,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+ID
+Bf
+Bf
+ID
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+cI
+OJ
+OJ
+OJ
+OJ
+Yy
+cI
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+dj
+rv
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nx
+iE
+iE
+Cb
+iE
+bI
+Bh
+Bh
+Bh
+Bh
+eN
+yd
+Bh
+Bh
+Bh
+Bh
+Nh
+yd
+Ch
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+VZ
+CY
+kw
+Pb
+Ma
+kw
+Pb
+CY
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(115,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+ID
+Bf
+Bf
+ID
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+mK
+OJ
+OJ
+OJ
+OJ
+OJ
+QC
+Bl
+Bl
+Bl
+Bl
+Nb
+dW
+iE
+iE
+Un
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Nb
+Nb
+iE
+iE
+PK
+iE
+iE
+iE
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+lD
+IQ
+yc
+jK
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+yd
+kw
+kw
+kw
+kw
+kw
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(116,1,1) = {"
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+ID
+Bf
+Bf
+ID
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+OJ
+OJ
+OJ
+ba
+OJ
+OJ
+OJ
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+JS
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Nb
+Nb
+Nb
+dW
+iE
+mW
+iE
+iE
+XQ
+Bh
+Bh
+Bh
+Bh
+Uv
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+fa
+yd
+yd
+yd
+fa
+yd
+yd
+kw
+ab
+kw
+kw
+hw
+yd
+yd
+fa
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(117,1,1) = {"
+Bl
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Kv
+Bl
+Bl
+ID
+Bf
+Bf
+ID
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+SY
+OJ
+OJ
+OJ
+OJ
+cW
+OJ
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+eI
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+Nb
+Nb
+Nb
+hi
+iE
+iE
+iE
+iE
+fn
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+Vi
+yd
+yd
+VP
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+kw
+Pb
+Ma
+kw
+Pb
+CY
+yd
+yd
+yd
+eN
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+Lc
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(118,1,1) = {"
+BV
+BV
+BV
+wA
+jr
+BV
+BV
+BV
+BV
+wA
+Kv
+ID
+ID
+Bf
+Pp
+ID
+ID
+Kv
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+cI
+OJ
+ZJ
+OJ
+OJ
+OJ
+cI
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+Za
+iE
+xH
+Nb
+Nb
+iE
+CT
+iE
+iE
+wX
+iE
+iE
+iE
+iE
+iE
+CT
+iE
+iE
+Nb
+Nb
+Nb
+iE
+iE
+iE
+iE
+iE
+sG
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+KD
+tQ
+hB
+bw
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+yd
+kw
+kw
+kw
+kw
+kw
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+LP
+LP
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(119,1,1) = {"
+OS
+Ly
+BV
+BV
+Bo
+Ct
+BV
+BV
+BV
+BV
+Ct
+Bo
+jr
+BV
+BV
+BV
+BV
+BV
+oL
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+cI
+cI
+OJ
+Oo
+OJ
+cI
+cI
+Bl
+Bl
+Bl
+Bl
+Nb
+Vx
+iE
+iE
+Wo
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+pE
+yd
+Bh
+Bh
+Bh
+Bh
+Nh
+yd
+yd
+yd
+qI
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+LN
+yd
+kw
+bQ
+kw
+kw
+yk
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+LP
+LP
+Bh
+TB
+yd
+Lo
+Ou
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(120,1,1) = {"
+OS
+BV
+iC
+EM
+Bo
+BV
+BV
+BV
+BV
+Ly
+jr
+Mp
+BV
+BV
+Ly
+BV
+BV
+BV
+BV
+jr
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+dj
+iE
+cG
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+XC
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+VZ
+CY
+kw
+Pb
+Ma
+kw
+Pb
+CY
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+eN
+yd
+yd
+OV
+gK
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(121,1,1) = {"
+OS
+BV
+BV
+BV
+BV
+BV
+wA
+BV
+Ly
+BV
+BV
+BV
+BV
+BV
+wA
+BV
+BV
+BV
+Ly
+BV
+rh
+Kv
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+vU
+iE
+Nb
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+fa
+yd
+UF
+DP
+ul
+Sv
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(122,1,1) = {"
+OS
+BV
+Ly
+BV
+BV
+BV
+BV
+Ct
+BV
+Ly
+BV
+BV
+BV
+BV
+BV
+BV
+Ly
+BV
+BV
+Ct
+rB
+rh
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+dj
+Nb
+uy
+ea
+Gu
+Gu
+Gu
+mJ
+BT
+Gu
+Gu
+Gu
+Dn
+mJ
+Gu
+Gu
+kX
+Gu
+mJ
+Gu
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+eN
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+VJ
+yd
+qI
+yd
+yd
+yd
+qI
+yd
+ob
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+qI
+eN
+yd
+yd
+yd
+yp
+nZ
+nZ
+pO
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(123,1,1) = {"
+OS
+BV
+Bo
+TN
+Ct
+BV
+Bo
+BV
+BV
+BV
+BV
+BV
+BV
+Ct
+BV
+BV
+BV
+Ly
+BV
+BV
+rh
+JO
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+iE
+JS
+Nb
+Nb
+uy
+Bi
+Th
+GH
+tV
+gt
+Gu
+Gu
+ZC
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+fN
+Gu
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+pE
+Ch
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+pE
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+eg
+nZ
+JR
+nZ
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(124,1,1) = {"
+OS
+BV
+Ct
+BV
+BV
+BV
+BV
+wA
+cv
+BV
+BV
+BV
+wA
+BV
+Bo
+jr
+xy
+BV
+BV
+BV
+wA
+BV
+jr
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+Nb
+Nb
+uy
+Fp
+Gu
+GH
+Gu
+GH
+Gu
+Gu
+ub
+Gu
+Gu
+Gu
+jQ
+Gu
+Th
+Gu
+BL
+Gu
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Sv
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+ux
+XC
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+LP
+LP
+LP
+Bh
+LC
+Dy
+nZ
+ET
+HK
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(125,1,1) = {"
+OS
+BV
+wA
+jr
+BV
+BV
+BV
+BV
+Ct
+BV
+BV
+BV
+BV
+BV
+BV
+wA
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+uS
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+dj
+iE
+Nb
+Nb
+uy
+Gu
+Gu
+GH
+Gu
+GH
+Gu
+Gu
+gx
+Gu
+Gu
+Gu
+SW
+Gu
+Gu
+Gu
+aU
+Gu
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+mV
+yd
+yd
+yd
+Bh
+yd
+yd
+yd
+Ch
+eN
+yd
+yd
+yd
+Ou
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+LP
+LP
+LP
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(126,1,1) = {"
+OS
+BV
+BV
+BV
+Ct
+BV
+BV
+BV
+Bo
+BV
+BV
+BV
+Bo
+BV
+BV
+BV
+BV
+cv
+jr
+BV
+BV
+Ly
+BV
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+Nb
+Nb
+uy
+TA
+Gu
+tV
+Eu
+tV
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+Gu
+tj
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+aE
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+lj
+lj
+MG
+rq
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(127,1,1) = {"
+OS
+BV
+BV
+Ly
+Bo
+BV
+BV
+BV
+wA
+BV
+BV
+BV
+wA
+BV
+BV
+Ly
+BV
+Ly
+BV
+BV
+BV
+BV
+BV
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+vB
+iE
+Nb
+Nb
+uy
+Gu
+Gu
+Gu
+Gu
+ji
+Th
+Gu
+Gu
+Gu
+Gu
+ji
+Gu
+Gu
+Gu
+Gu
+ji
+mw
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+eN
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(128,1,1) = {"
+OS
+jr
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+wA
+BV
+BV
+BV
+Ly
+Bo
+BV
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+dW
+iE
+Nb
+Nb
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+Gu
+Gu
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+uy
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+yd
+yd
+pE
+yd
+yd
+yd
+yd
+eN
+yd
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(129,1,1) = {"
+OS
+BV
+BV
+BV
+BV
+wA
+BV
+jr
+BV
+Ct
+BV
+BV
+BV
+BV
+BV
+Mp
+BV
+BV
+BV
+wA
+BV
+BV
+BV
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+iE
+JS
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+qI
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Lc
+yd
+qI
+yd
+XC
+yd
+eN
+yd
+yd
+yd
+qI
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+qI
+yd
+yd
+yd
+yd
+Eh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(130,1,1) = {"
+OS
+wA
+BV
+BV
+BV
+BV
+BV
+BV
+xy
+xy
+BV
+BV
+BV
+BV
+BV
+EM
+BV
+BV
+BV
+wA
+BV
+BV
+wA
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Un
+iE
+wX
+iE
+iE
+WO
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+vU
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+eN
+yd
+yd
+yd
+Ch
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+yd
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(131,1,1) = {"
+OS
+BV
+Bo
+jr
+Ct
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+Ct
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+jr
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+iE
+iE
+iE
+fF
+iE
+hv
+iE
+dj
+iE
+iE
+iE
+iE
+dj
+iE
+iE
+iE
+hv
+iE
+iE
+wX
+iE
+iE
+hv
+iE
+iE
+iE
+yd
+yd
+yd
+yd
+yd
+yd
+yd
+Bh
+Bh
+Bh
+Bh
+wg
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(132,1,1) = {"
+OS
+BV
+wA
+BV
+cv
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+Ly
+Ct
+BV
+BV
+BV
+Ct
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+HP
+iE
+iE
+iE
+iE
+iE
+Nb
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Zh
+Nb
+Nb
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+yd
+Bh
+Bh
+gW
+yd
+yd
+yd
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(133,1,1) = {"
+OS
+BV
+BV
+BV
+wA
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+Ly
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+TH
+iE
+OO
+iE
+dg
+iE
+iE
+az
+iE
+jL
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+LB
+iE
+LB
+iE
+Bh
+Bh
+Bh
+Bh
+Bh
+Gh
+zh
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(134,1,1) = {"
+zC
+zC
+zC
+zC
+zC
+BV
+BV
+BV
+BV
+BV
+BV
+xa
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+wA
+BV
+TN
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+cY
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+bA
+Bh
+Bh
+yd
+sZ
+wB
+Il
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(135,1,1) = {"
+zC
+zC
+zC
+zC
+zC
+zC
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+cv
+BV
+BV
+BV
+BV
+BV
+wA
+Bo
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+HP
+iE
+iE
+iE
+iE
+iE
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+ch
+iE
+iE
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+yd
+wB
+lA
+wB
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(136,1,1) = {"
+OS
+BV
+BV
+BV
+zC
+zC
+Ly
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+Ge
+BV
+jr
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+iE
+iE
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+iE
+iE
+iE
+iE
+iE
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+Bh
+yd
+sZ
+wB
+Il
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(137,1,1) = {"
+OS
+jr
+Ct
+TN
+zC
+zC
+zC
+Ct
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+Ct
+BV
+BV
+BV
+Ly
+Ct
+BV
+Ct
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Nb
+Nb
+Nb
+Nb
+Nb
+Nb
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+Bh
+yd
+yd
+yd
+yd
+yd
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(138,1,1) = {"
+OS
+Ct
+BV
+Bo
+BV
+zC
+zC
+BV
+wA
+Bo
+BV
+BV
+Ly
+BV
+BV
+BV
+Ly
+BV
+BV
+BV
+BV
+Bo
+jr
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+Bh
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(139,1,1) = {"
+OS
+BV
+BV
+wA
+BV
+zC
+zC
+jr
+BV
+BV
+BV
+wA
+jr
+BV
+BV
+Ly
+BV
+BV
+BV
+wA
+BV
+BV
+wA
+BV
+Kv
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
+(140,1,1) = {"
+OS
+OS
+OS
+OS
+OS
+zC
+zC
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+OS
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+Bl
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+LP
+"}
diff --git a/maps/stellar_delight/stellar_delight_defines.dm b/maps/stellar_delight/stellar_delight_defines.dm
index d9ffd5b20f..61a88f155a 100644
--- a/maps/stellar_delight/stellar_delight_defines.dm
+++ b/maps/stellar_delight/stellar_delight_defines.dm
@@ -168,7 +168,7 @@
)
lateload_redgate = list(
- list("Redgate - Teppi Ranch"),
+/* list("Redgate - Teppi Ranch"),
list("Redgate - Innland"),
// list("Redgate - Abandoned Island"), //This will come back later
list("Redgate - Dark Adventure"),
@@ -180,7 +180,8 @@
list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"),
list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town"),
list("Redgate - Laserdome"),
- list("Redgate - Cascading Falls")
+ list("Redgate - Cascading Falls"),*/
+ list("Redgate - Jungle Underground", "Redgate - Jungle")
)
ai_shell_restricted = TRUE
diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm
index ad78a2bd44..f6418d00e9 100644
--- a/maps/tether/tether_defines.dm
+++ b/maps/tether/tether_defines.dm
@@ -210,7 +210,8 @@
list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"),
list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town"),
list("Redgate - Laserdome"),
- list("Redgate - Cascading Falls")
+ list("Redgate - Cascading Falls"),
+ list("Redgate - Jungle Underground", "Redgate - Jungle")
)
ai_shell_restricted = TRUE
diff --git a/vorestation.dme b/vorestation.dme
index d67e258c6b..4864022d5d 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -3252,6 +3252,7 @@
#include "code\modules\mob\living\simple_mob\subtypes\vore\corrupt_hounds.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\cryptdrake.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\deathclaw.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\devil.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\dino.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\dominated_brain.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\dragon.dm"
@@ -3270,11 +3271,13 @@
#include "code\modules\mob\living\simple_mob\subtypes\vore\pakkun.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\panther.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\peasant.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\plants.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\rabbit.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\raptor.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\rat.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\redpanda.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\scel.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\scrubble.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\seagull.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\sect_drone.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\sect_queen.dm"
@@ -3283,6 +3286,8 @@
#include "code\modules\mob\living\simple_mob\subtypes\vore\softdog.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\solargrub.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\solargrub_larva.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\sonadile.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\vore\stalker.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\succubi.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\vampire.dm"
#include "code\modules\mob\living\simple_mob\subtypes\vore\vore.dm"