diff --git a/code/game/turfs/simulated/outdoors/grass_ch.dm b/code/game/turfs/simulated/outdoors/grass_ch.dm index 3886a6a420..5ce3692cd3 100644 --- a/code/game/turfs/simulated/outdoors/grass_ch.dm +++ b/code/game/turfs/simulated/outdoors/grass_ch.dm @@ -28,7 +28,7 @@ GLOBAL_LIST_INIT(grass_animals,list( /obj/random/mob/multiple/sifmobs = 6, /mob/living/simple_mob/humanoid/cultist/tesh = 2, /mob/living/simple_mob/humanoid/eclipse/solar/froststalker = 2, - /mob/living/simple_mob/humanoid/eclipse/lunar/pummler = 1, + /mob/living/simple_mob/humanoid/eclipse/lunar = 1, /mob/living/simple_mob/humanoid/merc/ranged/laser = 2, /mob/living/simple_mob/humanoid/cultist/magus/rift = 0.05 ), @@ -49,7 +49,7 @@ GLOBAL_LIST_INIT(grass_animals,list( /mob/living/simple_mob/animal/space/mouse_army/pyro = 6, /mob/living/simple_mob/animal/space/mouse_army/ammo = 6, /mob/living/simple_mob/mechanical/mecha/mouse_tank/livewire = 2, - /mob/living/simple_mob/humanoid/eclipse/lunar/miner = 6 + /mob/living/simple_mob/humanoid/eclipse/lunar = 6 ), "seasonalspring" = list( /mob/living/simple_mob/vore/alienanimals/teppi = 10, //CHOMP Edit diff --git a/modular_chomp/code/game/objects/structures/tyr_project_props.dm b/modular_chomp/code/game/objects/structures/tyr_project_props.dm index 8e02584868..7e3f40fa10 100644 --- a/modular_chomp/code/game/objects/structures/tyr_project_props.dm +++ b/modular_chomp/code/game/objects/structures/tyr_project_props.dm @@ -222,4 +222,81 @@ return put_mob(L) -*/ \ No newline at end of file +*/ + +//Rocc and stone + + +/obj/structure/outcrop/diamond/tyr + mindrop = 4 + upperdrop = 8 + +/obj/structure/outcrop/phoron/tyr + mindrop = 8 + upperdrop = 16 + +/obj/structure/outcrop/iron/tyr + mindrop = 20 + upperdrop = 40 + +/obj/structure/outcrop/coal/tyr + mindrop = 20 + upperdrop = 40 + +/obj/structure/outcrop/lead/tyr + mindrop = 4 + upperdrop = 10 + +/obj/structure/outcrop/gold/tyr + mindrop = 8 + upperdrop = 12 + +/obj/structure/outcrop/silver/tyr + mindrop = 12 + upperdrop = 16 + +/obj/structure/outcrop/platinum/tyr + mindrop = 4 + upperdrop = 10 + +/obj/structure/outcrop/uranium/tyr + mindrop = 8 + upperdrop = 16 + +/obj/structure/outcrop/hydrogen + name = "spiky outcrop" + desc = "A spiky rocky outcrop." + icon = 'modular_chomp/icons/obj/tribal_gear.dmi' + icon_state = "outcrop-hydrogen" + mindrop = 4 + upperdrop = 8 + outcropdrop = /obj/item/ore/hydrogen + +/obj/structure/outcrop/verdantium + name = "spiky outcrop" + desc = "A spiky rocky outcrop." + icon = 'modular_chomp/icons/obj/tribal_gear.dmi' + icon_state = "outcrop-verdantium" + mindrop = 4 + upperdrop = 8 + outcropdrop = /obj/item/ore/verdantium + +/obj/random/tyroutcrop //In case you want an outcrop without pre-determining the type of ore. + name = "random rock outcrop" + desc = "This is a random rock outcrop." + icon = 'icons/obj/outcrop.dmi' + icon_state = "outcrop-random" + + +/obj/random/tyroutcrop/item_to_spawn() + return pick(prob(3);/obj/structure/outcrop/verdantium, + prob(1);/obj/structure/outcrop/iron/tyr, + prob(1);/obj/structure/outcrop/coal/tyr, + prob(1);/obj/structure/outcrop/silver/tyr, + prob(1);/obj/structure/outcrop/gold/tyr, + prob(1);/obj/structure/outcrop/uranium/tyr, + prob(3);/obj/structure/outcrop/diamond/tyr, + prob(1);/obj/structure/outcrop/platinum/tyr, + prob(5);/obj/structure/outcrop/weathered_gate, + prob(3);/obj/structure/outcrop/hydrogen, + prob(1);/obj/structure/outcrop/lead/tyr) \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/tyr/oddities.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/tyr/oddities.dm index 6ac50556c8..ce730e9eef 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/tyr/oddities.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/tyr/oddities.dm @@ -54,8 +54,8 @@ vore_bump_emote = "slurps up" //Not really a good way to make the grammar work with a passive vore plant. vore_active = 1 vore_capacity = 1 - vore_pounce_chance = 0 //Plants only eat people who stumble into them. - swallowTime = 3 //3 deciseconds. This is intended to be nearly instant, e.g. victim trips and falls in. + vore_pounce_chance = 100 + swallowTime = 3 vore_ignores_undigestable = 0 vore_default_mode = DM_DIGEST @@ -110,6 +110,7 @@ spawn_types = list( /mob/living/simple_mob/animal/tyr/electronic_beetle = 1, /mob/living/simple_mob/animal/tyr/explode_beetle = 1, + /mob/living/simple_mob/animal/tyr/glowing_beetle = 1, ) simultaneous_spawns = 2 @@ -122,8 +123,8 @@ desc = "A large insect." icon_state = "lighting_beetle" icon_dead = "beetle_dead" - maxHealth = 40 - health = 40 + maxHealth = 18 + health = 18 pass_flags = PASSTABLE //flying bug movement_cooldown = 1 @@ -155,8 +156,8 @@ desc = "A large insect." icon_state = "fire_beetle" icon_dead = "beetle_dead" - maxHealth = 40 - health = 40 + maxHealth = 18 + health = 18 pass_flags = PASSTABLE //flying bug movement_cooldown = 1 @@ -177,3 +178,29 @@ if(isliving(A)) var/mob/living/L = A L.add_modifier(/datum/modifier/fire, 3 SECONDS) + +/mob/living/simple_mob/animal/tyr/glowing_beetle + name = "glowing beetle" + desc = "A large insect." + icon_state = "green_beetle" + icon_dead = "beetle_dead" + maxHealth = 18 + health = 18 + pass_flags = PASSTABLE + movement_cooldown = 1 + + ai_holder_type = /datum/ai_holder/hostile/ranged/robust + projectiletype = /obj/item/projectile/arc/spore + + meat_type = /obj/item/reagent_containers/food/snacks/deathclawmeat + meat_amount = 2 + + butchery_loot = list(\ + /obj/item/stack/material/chitin = 1\ + ) + + see_in_dark = 3 + melee_damage_lower = 16 + melee_damage_upper = 16 + + ranged_cooldown = 30 \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm index edac8e4bf2..e8b1b86f9d 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/eclipse.dm @@ -31,10 +31,9 @@ attack_sharp = 1 //CHOMPEdit attack_edge = 1 attacktext = list("slashed", "stabbed") - projectile_dispersion = 8 - projectile_accuracy = -20 + projectile_dispersion = 0 + ranged_cooldown = 10 armor = list(melee = 50, bullet = 50, laser = 50, energy = 50, bomb = 50, bio = 100, rad = 100) // Simple mob immunuties plus base Eclipse foe stuff - ranged_cooldown = 5 can_be_drop_prey = FALSE //CHOMP Add pass_flags = PASSTABLE //mostly for the melee mobs. @@ -56,7 +55,8 @@ needs_reload = TRUE reload_max = 7 // Not the best default, but it fits the pistol - ai_holder_type = /datum/ai_holder/hostile/ranged/robust/eclipse + reload_time = 1.5 SECONDS + ai_holder_type = /datum/ai_holder/simple_mob/intentional/eclipse loot_list = list(/obj/item/slime_extract/sepia = 1, /obj/item/bone/skull = 100 @@ -86,108 +86,62 @@ //////////////////////////////// // Stealing Merc AI Types //////////////////////////////// -/datum/ai_holder/hostile/ranged/robust/eclipse +/datum/ai_holder/simple_mob/intentional/eclipse + conserve_ammo = TRUE vision_range = 7 conserve_ammo = TRUE intelligence_level = AI_SMART use_astar = TRUE pointblank = TRUE + firing_lanes = TRUE + call_distance = 2 + wander = FALSE + var/closest_desired_distance = 4 + var/multiplayer_threshold = 3 -/datum/ai_holder/simple_mob/merc/eclipse/hunter - vision_range = 7 +/datum/ai_holder/simple_mob/intentional/eclipse/on_engagement(atom/A) + if(get_dist(holder, A) <= closest_desired_distance) + holder.IMove(get_step_away(holder, A, closest_desired_distance)) + else if(get_dist(holder, A) > closest_desired_distance) + holder.IMove(get_step_towards(holder, A)) -/datum/ai_holder/simple_mob/merc/eclipse/ranged - pointblank = TRUE // They get close? Just shoot 'em! - firing_lanes = TRUE // But not your buddies! +/datum/ai_holder/simple_mob/intentional/eclipse/pre_special_attack(atom/A) + if(isliving(A)) + var/tally = 0 + var/list/potential_targets = list_targets() + for(var/atom/movable/AM in potential_targets) + if(!can_attack(AM)) + continue + tally++ + if(tally >= multiplayer_threshold) + holder.a_intent = I_DISARM + return + else + holder.a_intent = I_HURT -/datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper - vision_range = 12 // We're a person with a long-ranged gun. +/datum/ai_holder/simple_mob/intentional/eclipse/closerange + closest_desired_distance = 1 -/datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper/max_range(atom/movable/AM) - return holder.ICheckRangedAttack(AM) ? 16 : 1 //////////////////////////////// //The solar part of the faction, highly resistant to burns and stuff /mob/living/simple_mob/humanoid/eclipse/solar name = "Solar Eclipse Initiate" desc = "You shouldn't be seeing this. But don't use lasers or energy weapons" + health = 100 + maxHealth = 100 + projectiletype = /obj/item/projectile/energy/mob/midlaser - armor = list(melee = -100, bullet = -100, laser = 30, energy = 30, bomb = 50, bio = 100, rad = 100) //Solar members are nigh immune to burns. - armor_soak = list(melee = 0, bullet = 0, laser = 18, energy = 18, bomb = 0, bio = 0, rad = 0) + armor = list(melee = -100, bullet = -100, laser = 40, energy = 40, bomb = 50, bio = 100, rad = 100) //Solar members are nigh immune to burns. + armor_soak = list(melee = 0, bullet = 0, laser = 20, energy = 20, bomb = 0, bio = 0, rad = 0) /mob/living/simple_mob/humanoid/eclipse/solar/bullet_act(obj/item/projectile/P) if(istype(P, /obj/item/projectile/energy) || istype(P, /obj/item/projectile/beam)) - visible_message(span_boldwarning(span_orange("[P] seems ineffective!."))) + visible_message(span_boldwarning("[P] seems ineffective!.")) ..() else ..() -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle - name = "Solar Eclipse Tesla Serpent" - desc = "A naga cladded in strange orange armor, seemingly guarded from lasers and energy based weaponry." - health = 40 - maxHealth = 40 - icon_state = "eclipse_tesla" - icon_living = "eclipse_tesla" - reload_max = 5 - movement_cooldown = 1 - - special_attack_cooldown = 20 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 7 - var/grenade_type = /obj/item/grenade/chem_grenade/incendiary - var/grenade_timer = 20 //CHOMPEdit - - projectiletype = /obj/item/projectile/energy/electrode/eclipse - -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle/should_special_attack(atom/A) - var/mob_count = 0 // Are there enough mobs to consider grenading? - var/turf/T = get_turf(A) - for(var/mob/M in range(T, 2)) - if(M.faction == faction) // Don't grenade our friends - return FALSE - if(M in oview(src, special_attack_max_range)) // And lets check if we can actually see at least two people before we throw a grenade - if(!M.stat) // Dead things don't warrant a grenade - mob_count ++ - if(mob_count < 2) - return FALSE - else - return TRUE - -// Yes? Throw the grenade -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle/do_special_attack(atom/A) - set waitfor = FALSE - set_AI_busy(TRUE) - - var/obj/item/grenade/G = new grenade_type(get_turf(src)) - if(istype(G)) - G.throw_at(A, G.throw_range, G.throw_speed, src) - G.det_time = grenade_timer //CHOMPEdit - G.activate(src) //CHOMPEdit - special_attack_charges = max(special_attack_charges-1, 0) - - set_AI_busy(FALSE) - -/mob/living/simple_mob/humanoid/eclipse/solar/firemoff - name = "Solar Eclipse Inferno Moth" - desc = "A moth like creature cladded in armor, wisps of flames swirling around it. Protected from lasers and energy." - health = 75 //old 40 - maxHealth = 75 - icon_state = "eclipse_moth" - icon_living = "eclipse_moth" - reload_max = 10 - - special_attack_cooldown = 8 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 7 - - projectiletype = /obj/item/projectile/energy/blob/moth - -/mob/living/simple_mob/humanoid/eclipse/solar/firemoff/do_special_attack(atom/A) - var/obj/item/projectile/P = new /obj/item/projectile/arc/spore(get_turf(src)) - P.launch_projectile(A, BP_TORSO, src) - - /mob/living/simple_mob/humanoid/eclipse/solar/snipertesh name = "Solar Eclipse Sniper" desc = "An armored teshari with a sniper, protected from laser and energy based attacks" @@ -198,19 +152,57 @@ icon_state = "eclipse_snipertesh" icon_living = "eclipse_snipertesh" - projectiletype = /obj/item/projectile/energy/mob/heavysniper + projectiletype = /obj/item/projectile/scatter/laser projectile_accuracy = 100 reload_max = 1 - reload_time = 1.5 SECONDS - - ai_holder_type = /datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper - + reload_time = 2.5 SECONDS ranged_attack_delay = 1.5 SECONDS + var/cloaked_alpha = 60 // Lower = Harder to see. + var/cloak_cooldown = 5 SECONDS // Amount of time needed to re-cloak after losing it. + var/last_uncloak = 0 + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/gun/energy/lasershotgun = 10 + ) + +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/cloak() + if(cloaked) + return + animate(src, alpha = cloaked_alpha, time = 1 SECOND) + cloaked = TRUE + + +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/uncloak() + last_uncloak = world.time // This is assigned even if it isn't cloaked already, to 'reset' the timer if the spider is continously getting attacked. + if(!cloaked) + return + animate(src, alpha = initial(alpha), time = 1 SECOND) + cloaked = FALSE + +// Check if cloaking if possible. +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/proc/can_cloak() + if(stat) + return FALSE + if(last_uncloak + cloak_cooldown > world.time) + return FALSE + + return TRUE + +// Called by things that break cloaks, like Technomancer wards. +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/break_cloak() + uncloak() + +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/is_cloaked() + return cloaked + +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/is_cloaked() + return cloaked /mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/ranged_pre_animation(atom/A) - Beam(get_turf(A), icon_state = "sniper_beam", time = 1 SECONDS, maxdistance = 15) + Beam(get_turf(A), icon_state = "sniper_beam", time = 2 SECONDS, maxdistance = 5) . = ..() /mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/shoot_target(atom/A) @@ -235,6 +227,16 @@ try_reload() return FALSE + if(ranged_cooldown_time) //If you have a non-zero number in a mob's variables, this pattern begins. + if(ranged_cooldown <= world.time) //Further down, a timer keeps adding to the ranged_cooldown variable automatically. + visible_message(span_bolddanger("\The [src]") + " fires at \the [A]!") //Leave notice of shooting. + shoot(A) //Perform the shoot action + if(casingtype) //If the mob is designated to leave casings... + new casingtype(loc) //... leave the casing. + ranged_cooldown = world.time + ranged_cooldown_time + ((injury_level / 2) SECONDS) //Special addition here. This is a timer. Keeping updating the time after shooting. Add that ranged cooldown time specified in the mob to the world time. + return TRUE //End these commands here. + // CHOMPAddition End + visible_message(span_danger(span_bold("\The [src]") + " fires at \the [orig_targ]!")) shoot(A) if(casingtype) @@ -245,50 +247,210 @@ return TRUE +/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh/handle_special() + if(!cloaked && can_cloak()) + cloak() -/mob/living/simple_mob/humanoid/eclipse/solar/radiation - name = "Solar Eclipse Irradiator" - desc = "A lizard emitting radiation, whilst protected from it, alongside energy and laser based weapons" - health = 150 //old 75 - maxHealth = 150 - glow_toggle = TRUE - reload_max = 3 - icon_state = "eclipse_rad" - icon_living = "eclipse_rad" +/mob/living/simple_mob/humanoid/eclipse/solar/plant + name = "Solar Eclipse Bioexpirment" + desc = "A strange armored looking plant." + reload_max = 6 + reload_time = 1 SECOND + movement_cooldown = 1 - glow_color = "#14ff20" - light_color = "#14ff20" - glow_range = 5 - glow_intensity = 3 + icon_state = "eclipse_plant" + icon_living = "eclipse_plant" + + projectiletype = /obj/item/projectile/energy/blob/toxic + specialattackprojectile = /obj/item/projectile/arc/spore + special_attack_cooldown = 7 SECONDS + special_attack_min_range = 1 + special_attack_max_range = 7 loot_list = list(/obj/item/slime_extract/sepia = 1, - /obj/item/bone/skull/unathi = 100 + /obj/item/bone/skull = 100, + /obj/item/seeds/random = 20 ) - projectiletype = /obj/item/projectile/energy/declone/burn - var/rads = 5 +/mob/living/simple_mob/humanoid/eclipse/solar/plant/do_special_attack(atom/A) + . = TRUE // So we don't fire a bolt as well. + switch(a_intent) + if(I_DISARM) + visible_message(span_warning("\The a flower begins to sprout from [src]'s back!")) + Beam(A, icon_state = "sat_beam", time = 2.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3 SECONDS, TIMER_DELETE_ME) + else + visible_message(span_warning("\The [src]'s vines spread out!")) + Beam(A, icon_state = "vine", time = 3 SECONDS, maxdistance = INFINITY) + if(ishuman(A)) + addtimer(CALLBACK(src, PROC_REF(itemyoink), A), 3 SECONDS, TIMER_DELETE_ME) -/mob/living/simple_mob/humanoid/eclipse/solar/radiation/handle_special() + +/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle //If you have a Nif, or are a borg you get hit with confusion and adds Edit, can't currently figure out NIF targeting + name = "Solar Eclipse Disabler Serpent" + desc = "A naga cladded in strange orange armor, seemingly guarded from lasers and energy based weaponry." + icon_state = "eclipse_disabler" + icon_living = "eclipse_disabler" + reload_max = 5 + movement_cooldown = 1 + + special_attack_cooldown = 30 SECONDS + special_attack_min_range = 1 + special_attack_max_range = 7 + + specialattackprojectile = /obj/item/projectile/energy/flash + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/cell/device/weapon/empproof = 10 + ) + +/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle/do_special_attack(atom/A) + . = TRUE // So we don't fire a bolt as well. + switch(a_intent) + if(I_DISARM) + specialattackprojectile = /obj/item/projectile/beam/stun + visible_message(span_warning("\The [src] begins to aim a strange gun!")) + Beam(A, icon_state = "sat_beam", time = 4.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 5 SECONDS, TIMER_DELETE_ME) + else + specialattackprojectile = /obj/item/projectile/energy/flash + visible_message(span_warning("\The [src] begins to aim a flare gun!")) + Beam(A, icon_state = "sat_beam", time = 3 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3 SECONDS, TIMER_DELETE_ME) + + +/mob/living/simple_mob/humanoid/eclipse/solar/froststalker //teleporting stalker + name = "Solar Eclipse Froststalker" + desc = "A somewhat see through being wearing a burn resistaint coat." + melee_damage_lower = 10 + melee_damage_upper = 10 + attack_armor_pen = 40 + special_attack_cooldown = 7 SECONDS + special_attack_min_range = 1 + special_attack_max_range = 7 + projectiletype = null + ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax + icon_state = "froststalker" + icon_living = "froststalker" + cold_resist = 1.0 + melee_attack_delay = 1.5 + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/stack/material/valhollide = 10 + ) + +/mob/living/simple_mob/humanoid/eclipse/solar/froststalker/do_special_attack(atom/A) + teleport(A) + +/mob/living/simple_mob/humanoid/eclipse/solar/nuclear + name = "Solar Eclipse Technician" + desc = "A strange being wearing a burn resistaint coat." + icon_state = "eclipse_nuke" + projectiletype = /obj/item/projectile/bullet/magnetic/flechette/small + special_attack_cooldown = 15 SECONDS + special_attack_min_range = 1 + special_attack_max_range = 9 + specialattackprojectile = /obj/item/projectile/bullet/magnetic/fuelrod/tritium + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/stock_parts/matter_bin/hyper = 10, + /obj/item/stock_parts/manipulator/hyper = 10, + /obj/item/stock_parts/capacitor/hyper = 10, + /obj/item/stock_parts/scanning_module/hyper = 10, + /obj/item/stock_parts/micro_laser/hyper = 10 + ) + +/mob/living/simple_mob/humanoid/eclipse/solar/nuclear/do_special_attack(atom/A) + . = TRUE // So we don't fire a bolt as well. + switch(a_intent) + if(I_DISARM) + specialattackprojectile = /obj/item/projectile/bullet/magnetic/fuelrod/tritium + visible_message(span_warning("\The [src] begins to mess with a fuel rod cannon!")) + Beam(A, icon_state = "sat_beam", time = 4.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 5 SECONDS, TIMER_DELETE_ME) + else + specialattackprojectile = /obj/item/projectile/beam/lightning + visible_message(span_warning("\The [src] pulls out a lighting rod!")) + Beam(A, icon_state = "sat_beam", time = 1.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 2 SECONDS, TIMER_DELETE_ME) + +/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish + name = "Lunar Eclipse Medic" + desc = "A strange being wearing a burn resistaint coat." + special_attack_cooldown = 5 SECONDS + special_attack_min_range = 1 + special_attack_max_range = 7 + projectiletype = /obj/item/projectile/energy/mob/drone + icon_state = "guardian" + icon_living = "guardian" + reload_max = 4 + var/reflectmode = 0 + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/slime_extract/pink = 100, + /obj/item/xenobio/monkey_gun = 15 + ) + +/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish/bullet_act(var/obj/item/projectile/P, var/def_zone) + if(reflectmode == 1) + if(istype(P,/obj/item/projectile/beam) || istype(P, /obj/item/projectile/energy)) + visible_message(span_danger("\The [src] reflects \the [P]!")) + + // Find a turf near or on the original location to bounce to + var/new_x = P.starting.x + pick(0, 0, 0, -1, 1, -2, 2) + var/new_y = P.starting.y + pick(0, 0, 0, -1, 1, -2, 2) + var/turf/curloc = get_turf(src) + + // redirect the projectile + P.redirect(new_x, new_y, curloc, src) + P.reflected = TRUE + return PROJECTILE_CONTINUE // complete projectile permutation + else + ..() + else + ..() + +/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish/do_special_attack(atom/A) + . = TRUE // So we don't fire a bolt as well. + switch(a_intent) + if(I_DISARM) + visible_message(span_warning("\The [src] turns silver!!")) + icon_state = "silver" + icon_living = "silver" + reflectmode = 1 + addtimer(CALLBACK(src, PROC_REF(change_back), A), 5 SECONDS, TIMER_DELETE_ME) + else + visible_message(span_warning("\The [src] regenerates!!")) //completly lying the mob does nothing in single player mode + +/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish/proc/change_back() + icon_state = "guardian" + icon_living = "guardian" + +/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish/handle_special() if(stat != DEAD) - irradiate() + heal_aura() ..() -/mob/living/simple_mob/humanoid/eclipse/solar/radiation/proc/irradiate() - SSradiation.radiate(src, rads) - +/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish/proc/heal_aura() + for(var/mob/living/L in view(src, 7)) + if(L.stat == DEAD || !IIsAlly(L)) + continue + L.add_modifier(/datum/modifier/aura/slime_heal, null, src) //The lunar mobs, highly resistant to brute based damage. /mob/living/simple_mob/humanoid/eclipse/lunar name = "Lunar Eclipse Initiate" desc = "You shouldn't be seeing this, but don't use melee weapons or bullets." - - armor = list(melee = 30, bullet = 30, laser = -100, energy = -100, bomb = 50, bio = 100, rad = 100) //Lunar members are nigh immune to burns. - armor_soak = list(melee = 18, bullet = 18, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) //15 because every melee weapon has dumb amount of AP + health = 100 + maxHealth = 100 + armor = list(melee = 40, bullet = 40, laser = -100, energy = -100, bomb = 50, bio = 100, rad = 100) //Lunar members are nigh immune to burns. + armor_soak = list(melee = 20, bullet = 20, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) //15 because every melee weapon has dumb amount of AP /mob/living/simple_mob/humanoid/eclipse/lunar/bullet_act(obj/item/projectile/P) if(istype(P, /obj/item/projectile/bullet)) - visible_message(span_boldwarning(span_orange("[P] seems ineffective!."))) + visible_message(span_boldwarning("[P] seems ineffective!.")) ..() else ..() @@ -297,152 +459,37 @@ to_chat(user, span_warning("This weapon is ineffective, it does no damage.")) .=..() -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner //wuff with shotgun - name = "Lunar Eclipse Shotgunner" - desc = "A Vulpkanin or the like in a red-purple flashing rigsuit, it defending them from physical damage of close and long ranges." - health = 40 - maxHealth = 40 - reload_max = 1 - - icon_state = "eclipse_shotwuff" - icon_living = "eclipse_shotwuff" - - projectiletype = /obj/item/projectile/bullet/shotgun - - ranged_attack_delay = 0.5 SECONDS - -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner/ranged_pre_animation(atom/A) - Beam(get_turf(A), icon_state = "sniper_beam", time = 0.5 SECONDS, maxdistance = 5) - . = ..() - -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner/shoot_target(atom/A) - set waitfor = FALSE - - if(!istype(A) || QDELETED(A)) - return - - setClickCooldown(get_attack_speed()) - - face_atom(A) - - var/atom/orig_targ = A - - if(ranged_attack_delay) - A = get_turf(orig_targ) - ranged_pre_animation(A) - handle_attack_delay(A, ranged_attack_delay) // This will sleep this proc for a bit, which is why waitfor is false. - - if(needs_reload) - if(reload_count >= reload_max) - try_reload() - return FALSE - - visible_message(span_danger(span_bold("\The [src]") + " fires at \the [orig_targ]!")) - shoot(A) - if(casingtype) - new casingtype(loc) - - if(ranged_attack_delay) - ranged_post_animation(A) - - return TRUE - /mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm //tesh got a gun name = "Lunar Eclipse Judge" desc = "A teshari wildly wielding a pistol, wearing bullet and sword protective gear." - health = 50 //old 20 + health = 50 maxHealth = 50 icon_state = "eclipse_shottesh" icon_living = "eclipse_shottesh" movement_cooldown = -1 - projectiletype = /obj/item/projectile/bullet/shotgun - reload_max = 6 + projectiletype = /obj/item/projectile/scatter/shotgun + reload_max = 1 + reload_time = 2.5 SECONDS + ranged_attack_delay = 1.5 SECONDS + var/cloaked_alpha = 40 // Lower = Harder to see. + var/cloak_cooldown = 1 SECONDS // Amount of time needed to re-cloak after losing it. + var/last_uncloak = 0 - projectile_dispersion = 100 - projectile_accuracy = -100 - base_attack_cooldown = 0.01 // Division by zero error if 0 + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/ammo_magazine/ammo_box/b12g/pellet = 15 + ) -/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger //Tanky boi. Very deadly melee - name = "Lunar Eclipse Ravanger" - desc = "An individual wearing strange armor that seems to be living, and breathing while providing protection from bullets and swords." - health = 125 //Old 40 - maxHealth = 125 - icon_state = "eclipse_ravanger" - icon_living = "eclipse_ravanger" - - attack_armor_pen = 15 - - melee_damage_lower = 20 - melee_damage_upper = 20 - - melee_attack_delay = 4 - - projectiletype = null - ai_holder_type = /datum/ai_holder/simple_mob/merc/eclipse - - var/poison_chance = 50 - var/poison_per_bite = 20 - var/poison_type = REAGENT_ID_HYPERZINE - - -////////////////////////////////////////////// -//Boss mob time. Or somewhat bosses anyway. -///////////////////////////////////////////// - -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound - name = "Solar Eclipse Hound" - desc = "A heavily armored creature, flames dancing around it's burn and energy proof armor." - health = 150 //Old 70 - maxHealth = 150 - ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax - projectiletype = null //Flashing was to much for this mob. - movement_cooldown = -1 - melee_damage_lower = 20 - melee_damage_upper = 20 - icon_state = "eclipse_hound" - icon_living = "eclipse_hound" - size_multiplier = 1.25 - var/poison_chance = 100 - var/poison_per_bite = 4 - var/poison_type = REAGENT_ID_STOXIN - - melee_attack_delay = 3 - -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound/do_special_attack(atom/A) - var/datum/effect/effect/system/spark_spread/s1 = new /datum/effect/effect/system/smoke_spread - s1.set_up(5, 1, A) - var/obj/item/projectile/P = new /obj/item/projectile/energy/fireball(get_turf(src)) - P.launch_projectile(A, BP_TORSO, src) - - -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel - name = "Lunar Eclipse Armadillo" - desc = "A silver armadillo coiled up, and spinning at you, all bullets and close quarters attacks bouncing off." - health = 150 //old 70 - maxHealth = 150 - melee_damage_lower = 10 - melee_damage_upper = 10 - attack_armor_pen = 50 - icon_state = "eclipse_wheel" - icon_living = "eclipse_wheel" - ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax - projectiletype = null //the net idea was fun but seemed to painful. - movement_cooldown = -0.5 - - var/cloaked_alpha = 60 // Lower = Harder to see. - var/cloak_cooldown = 5 SECONDS // Amount of time needed to re-cloak after losing it. - var/last_uncloak = 0 // world.time - -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/cloak() +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/cloak() if(cloaked) return animate(src, alpha = cloaked_alpha, time = 1 SECOND) cloaked = TRUE -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/uncloak() +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/uncloak() last_uncloak = world.time // This is assigned even if it isn't cloaked already, to 'reset' the timer if the spider is continously getting attacked. if(!cloaked) return @@ -450,7 +497,7 @@ cloaked = FALSE // Check if cloaking if possible. -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/proc/can_cloak() +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/proc/can_cloak() if(stat) return FALSE if(last_uncloak + cloak_cooldown > world.time) @@ -459,176 +506,21 @@ return TRUE // Called by things that break cloaks, like Technomancer wards. -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/break_cloak() +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/break_cloak() uncloak() -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/is_cloaked() +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/is_cloaked() return cloaked +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/is_cloaked() + return cloaked -// Cloaks the spider automatically, if possible. -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/handle_special() - if(!cloaked && can_cloak()) - cloak() - -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/bullet_act(obj/item/projectile/P) - . = ..() - break_cloak() - -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel/hit_with_weapon(obj/item/O, mob/living/user, effective_force, hit_zone) - . = ..() - break_cloak() - - - -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound/apply_melee_effects(var/atom/A) - if(isliving(A)) - var/mob/living/L = A - if(L.reagents) - var/target_zone = pick(BP_TORSO,BP_TORSO,BP_TORSO,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_HEAD) - if(L.can_inject(src, null, target_zone)) - inject_poison(L, target_zone) - -// Does actual poison injection, after all checks passed. -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound/proc/inject_poison(mob/living/L, target_zone) - if(prob(poison_chance)) - to_chat(L, span_warning("You feel a tiny prick.")) - L.reagents.add_reagent(poison_type, poison_per_bite) - -/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger/apply_melee_effects(var/atom/A) - if(isliving(A)) - var/mob/living/L = A - if(L.reagents) - var/target_zone = pick(BP_TORSO,BP_TORSO,BP_TORSO,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_HEAD) - if(L.can_inject(src, null, target_zone)) - inject_poison(L, target_zone) - -// Does actual poison injection, after all checks passed. -/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger/proc/inject_poison(mob/living/L, target_zone) - if(prob(poison_chance)) - to_chat(L, span_warning("You feel a tiny prick.")) - L.reagents.add_reagent(poison_type, poison_per_bite) - - -///////////////// -//Mecha Killers// -///////////////// -/mob/living/simple_mob/humanoid/eclipse/solar/guardian - name = "Solar Eclipse Guardian" - desc = "A squishy bouncy individual, it seeming to harmlessly absorb lasers and energy in general." - projectiletype = /obj/item/projectile/energy/mob/ionbeam - icon_state = "eclipse_guardian" - icon_living = "eclipse_guardian" - reload_max = 10 - - loot_list = list(/obj/item/slime_extract/sepia = 1, - /obj/item/slime_extract/grey = 100 - ) - -/mob/living/simple_mob/humanoid/eclipse/solar/guardian/handle_special() - if(stat != DEAD) - heal_aura() - ..() - -/mob/living/simple_mob/humanoid/eclipse/solar/guardian/proc/heal_aura() - for(var/mob/living/L in view(src, 4)) - if(L.stat == DEAD || !IIsAlly(L)) - continue - L.add_modifier(/datum/modifier/aura/slime_heal, null, src) - - -/mob/living/simple_mob/humanoid/eclipse/lunar/pummler - name = "Lunar Eclipse Pummeler" - desc = "A strange creature moving at quick speed, bullets and melee sliding off it's hide." - projectiletype = /obj/item/projectile/mobbola - ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax - melee_damage_lower = 10 - melee_damage_upper = 10 - attack_armor_pen = 30 - movement_cooldown = 0 - icon_state = "eclipse_pummler" - icon_living = "eclipse_pummler" - reload_max = 5 - size_multiplier = 1.5 - melee_attack_delay = 3 SECOND - var/shock_chance = 25 - base_attack_cooldown = 6 - hovering = TRUE - ranged_cooldown_time = 1.5 - -/mob/living/simple_mob/humanoid/eclipse/lunar/pummler/apply_melee_effects(var/atom/A) - if(isliving(A)) - var/mob/living/L = A - if(prob(shock_chance)) - A.emp_act(4) //The weakest strength of EMP - playsound(src, 'sound/weapons/Egloves.ogg', 75, 1) - var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread - s.set_up(5, 1, L) - s.start() - visible_message(span_danger("The pummler releases a powerful shock!")) - else - return - -//Freezing winds update - -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster //Air sniper - name = "Lunar Eclipse Demodrone" - desc = "A strange somewhat see through floating jellyfish." - health = 30 - maxHealth = 30 - ai_holder_type = /datum/ai_holder/simple_mob/merc/eclipse/ranged - projectiletype = /obj/item/projectile/bullet/srmrocket - - icon_state = "aeroblaster" - icon_living = "aeroblaster" - - reload_max = 1 - reload_time = 5.0 SECONDS - - ranged_attack_delay = 1.5 SECONDS - hovering = TRUE - - loot_list = list(/obj/item/slime_extract/sepia = 1, - /obj/item/slime_extract/grey = 100 - ) - - var/exploded = FALSE - var/explosion_dev_range = 0 - var/explosion_heavy_range = 1 - var/explosion_light_range = 2 - var/explosion_flash_range = 3 // This doesn't do anything iirc. - - var/explosion_delay_lower = 5 SECOND // Lower bound for explosion delay. - var/explosion_delay_upper = 10 SECONDS // Upper bound. - - -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster/death() - visible_message(span_critical("\The [src]'s body begins to rupture!")) - var/delay = rand(explosion_delay_lower, explosion_delay_upper) - spawn(0) - // Flash black and red as a warning. - for(var/i = 1 to delay) - if(i % 2 == 0) - color = "#000000" - else - color = "#FF0000" - sleep(1) - - spawn(delay) - // The actual boom. - if(src && !exploded) - visible_message(span_danger("\The [src]'s body detonates!")) - exploded = TRUE - explosion(src.loc, explosion_dev_range, explosion_heavy_range, explosion_light_range, explosion_flash_range) - return ..() - - -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster/ranged_pre_animation(atom/A) - Beam(get_turf(A), icon_state = "sniper_beam", time = 1.5 SECONDS, maxdistance = 15) +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/ranged_pre_animation(atom/A) + Beam(get_turf(A), icon_state = "sniper_beam", time = 2 SECONDS, maxdistance = 5) . = ..() -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster/shoot_target(atom/A) +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/shoot_target(atom/A) set waitfor = FALSE if(!istype(A) || QDELETED(A)) @@ -650,6 +542,16 @@ try_reload() return FALSE + if(ranged_cooldown_time) //If you have a non-zero number in a mob's variables, this pattern begins. + if(ranged_cooldown <= world.time) //Further down, a timer keeps adding to the ranged_cooldown variable automatically. + visible_message(span_bolddanger("\The [src]") + " fires at \the [A]!") //Leave notice of shooting. + shoot(A) //Perform the shoot action + if(casingtype) //If the mob is designated to leave casings... + new casingtype(loc) //... leave the casing. + ranged_cooldown = world.time + ranged_cooldown_time + ((injury_level / 2) SECONDS) //Special addition here. This is a timer. Keeping updating the time after shooting. Add that ranged cooldown time specified in the mob to the world time. + return TRUE //End these commands here. + // CHOMPAddition End + visible_message(span_danger(span_bold("\The [src]") + " fires at \the [orig_targ]!")) shoot(A) if(casingtype) @@ -660,80 +562,49 @@ return TRUE - -/mob/living/simple_mob/humanoid/eclipse/lunar/miner //Confusion? - name = "Lunar Eclipse Miner" - desc = "A slime creature in red and blue armor." - health = 30 - maxHealth = 30 - projectiletype = /obj/item/projectile/energy/excavate/weak - special_attack_cooldown = 60 SECONDS - special_attack_min_range = 4 - special_attack_max_range = 7 - icon_state = "miner" - icon_living = "miner" - - loot_list = list(/obj/item/slime_extract/sepia = 1, - /obj/item/slime_extract/grey = 100 - ) - -/mob/living/simple_mob/humanoid/eclipse/lunar/miner/do_special_attack(atom/A) - new /mob/living/simple_mob/mechanical/mining_drone/scavenger/eclipse (src.loc) - ..(null,"creates a mining drone.") +/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm/handle_special() + if(!cloaked && can_cloak()) + cloak() /mob/living/simple_mob/mechanical/mining_drone/scavenger/eclipse health = 1 maxHealth = 1 faction = "eclipse" -/mob/living/simple_mob/humanoid/eclipse/solar/cryomancer //Freezing slowdown unit - name = "Solar Eclipse Cryomancer" - desc = "A being wearing ice and burn resistaint armor." - health = 100 - maxHealth = 100 - projectiletype = /obj/item/projectile/bullet/frostshotgun - has_heal_droid = TRUE - reload_max = 5 - icon_state = "cryo" - icon_living = "cryo" - cold_resist = 1.0 - has_heal_droid = TRUE - ai_holder_type = /datum/ai_holder/simple_mob/merc/eclipse/ranged/cyro - var/grenade_type = /obj/item/grenade/chem_grenade/frost - var/grenade_timer = 20 //CHOMPEdit +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle //Bouncing bullet extreme + name = "Lunar Eclipse Silver Serpent" + desc = "A hungry looking naga, their strange armor protecting them from ballistics and physical weaponry." + reload_max = 6 + movement_cooldown = 1 - ranged_attack_delay = 1.5 SECONDS + icon_state = "eclipse_silver" + icon_living = "eclipse_silver" - loot_list = list(/obj/item/gun/energy/freezegun = 100, + projectiletype = /obj/item/projectile/bullet/pistol/medium + special_attack_cooldown = 30 SECONDS + special_attack_min_range = 1 + special_attack_max_range = 7 + specialattackprojectile = /obj/item/projectile/beam/energy_net + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/archaeological_find = 15 ) -/mob/living/simple_mob/humanoid/eclipse/solar/cryomancer/should_special_attack(atom/A) - var/mob_count = 0 // Are there enough mobs to consider grenading? - var/turf/T = get_turf(A) - for(var/mob/M in range(T, 2)) - if(M.faction == faction) // Don't grenade our friends - return FALSE - if(M in oview(src, special_attack_max_range)) // And lets check if we can actually see at least two people before we throw a grenade - if(!M.stat) // Dead things don't warrant a grenade - mob_count ++ - if(mob_count < 2) - return FALSE - else - return TRUE +/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle/do_special_attack(atom/A) //I am bringing back the netgun attack. 4 seconds + . = TRUE // So we don't fire a bolt as well. + switch(a_intent) + if(I_DISARM) + specialattackprojectile = /obj/item/projectile/bullet/srmrocket/weak + visible_message(span_warning("\The [src] begins to mess with a rockect launcher!")) + Beam(A, icon_state = "sat_beam", time = 4.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 5 SECONDS, TIMER_DELETE_ME) + else + specialattackprojectile = /obj/item/projectile/temp/hot + visible_message(span_warning("\The [src] pulls out a tempature gun!")) + Beam(A, icon_state = "sat_beam", time = 1.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 2 SECONDS, TIMER_DELETE_ME) -// Yes? Throw the grenade -/mob/living/simple_mob/humanoid/eclipse/solar/cryomancer/do_special_attack(atom/A) - set waitfor = FALSE - set_AI_busy(TRUE) - - var/obj/item/grenade/G = new grenade_type(get_turf(src)) - if(istype(G)) - G.throw_at(A, G.throw_range, G.throw_speed, src) - G.det_time = grenade_timer //CHOMPEdit - G.activate(src) //CHOMPEdit - special_attack_charges = max(special_attack_charges-1, 0) - - set_AI_busy(FALSE) /obj/item/grenade/chem_grenade/frost name = "frost grenade" @@ -782,123 +653,41 @@ range = 12 hud_state = "water" -/datum/ai_holder/simple_mob/merc/eclipse/ranged/cyro - can_flee = TRUE // If they're even allowed to flee. - flee_when_dying = TRUE // If they should flee when low on health. - dying_threshold = 0.3 // How low on health the holder needs to be before fleeing. Defaults to 30% or lower health. - flee_when_outmatched = TRUE // If they should flee upon reaching a specific tension threshold. - outmatched_threshold = 300 - -//Some new eclipse folks for tyr, although one is a rework of the exsisting naga - -/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle //If you have a Nif, or are a borg you get hit with confusion and adds Edit, can't currently figure out NIF targeting - name = "Solar Eclipse Disabler Serpent" - desc = "A naga cladded in strange orange armor, seemingly guarded from lasers and energy based weaponry." - health = 120 - maxHealth = 120 - icon_state = "eclipse_disabler" - icon_living = "eclipse_disabler" - reload_max = 5 - movement_cooldown = 1 - - special_attack_cooldown = 30 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 7 - - projectiletype = /obj/item/projectile/energy/electrode - specialattackprojectile = /obj/item/projectile/energy/flash - -/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle/do_special_attack(atom/A) - visible_message(span_warning("\The [src] begins to aim a flare gun!")) - Beam(A, icon_state = "sat_beam", time = 3 SECONDS, maxdistance = INFINITY) - addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3 SECONDS, TIMER_DELETE_ME) - -/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle //Bouncing bullet extreme - name = "Lunar Eclipse Silver Serpent" - desc = "A hungry looking naga, their strange armor protecting them from ballistics and physical weaponry." - health = 120 - maxHealth = 120 - reload_max = 6 - movement_cooldown = 1 - - icon_state = "eclipse_silver" - icon_living = "eclipse_silver" - - projectiletype = /obj/item/projectile/bullet/pistol/medium - special_attack_cooldown = 30 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 7 - specialattackprojectile = /obj/item/projectile/beam/energy_net - -/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle/do_special_attack(atom/A) //I am bringing back the netgun attack. 4 seconds - visible_message(span_warning("\The [src] begins to create an energy net!")) - Beam(A, icon_state = "sat_beam", time = 3 SECONDS, maxdistance = INFINITY) - addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3 SECONDS, TIMER_DELETE_ME) - - -/mob/living/simple_mob/humanoid/eclipse/solar/plant - name = "Solar Eclipse Bioexpirment" - desc = "A strange armored looking plant." - health = 120 - maxHealth = 120 - reload_max = 6 - movement_cooldown = 1 - - icon_state = "eclipse_plant" - icon_living = "eclipse_plant" - - projectiletype = /obj/item/projectile/bullet/thorn - special_attack_cooldown = 30 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 7 - -/mob/living/simple_mob/humanoid/eclipse/solar/plant/do_special_attack(atom/A) - visible_message(span_warning("\The [src]'s vines spread out!")) - Beam(A, icon_state = "vine", time = 3 SECONDS, maxdistance = INFINITY) - if(ishuman(A)) - addtimer(CALLBACK(src, PROC_REF(itemyoink), A), 3 SECONDS, TIMER_DELETE_ME) - - -/mob/living/simple_mob/humanoid/eclipse/proc/itemyoink(mob/living/carbon/human/H) - if(!H) - return - var/obj/item/I = H.get_active_hand() - H.drop_item() - if(I) - I.throw_at(src, 2, 4) // Just yoinked. - src.visible_message(span_danger("The [name] heaves, pulling \the [H]'s weapon from their hands!")) - /mob/living/simple_mob/humanoid/eclipse/lunar/experimenter name = "Lunar Eclipse Experimenter" desc = "A lizard cladded in strange red-purple armor, seemingly guarded from lasers and energy based weaponry." - health = 120 - maxHealth = 120 icon_state = "eclipse_gravliz" icon_living = "eclipse_gravliz" reload_max = 1 movement_cooldown = 1 - special_attack_cooldown = 30 SECONDS + special_attack_cooldown = 7 SECONDS special_attack_min_range = 1 special_attack_max_range = 7 projectiletype = /obj/item/projectile/energy/wp_shotgun //using the weapon found upon tyr + specialattackprojectile = /obj/item/projectile/arc/microsingulo + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/research_sample/bluespace = 15 + ) /mob/living/simple_mob/humanoid/eclipse/lunar/experimenter/do_special_attack(atom/A) - visible_message(span_danger("The [src]'s gauntlet glows silver!")) - if(isliving(A)) - addtimer(CALLBACK(src, PROC_REF(gravity_pull), A), 3 SECOND, TIMER_DELETE_ME) - -/mob/living/simple_mob/humanoid/eclipse/proc/gravity_pull(mob/living/L) - if(!L) - return - L.throw_at(src, 2, 4) // Just yoinked. + . = TRUE // So we don't fire a bolt as well. + switch(a_intent) + if(I_DISARM) + visible_message(span_warning("\The [src]'s armor deploys a shoulder mounted turret!")) + Beam(A, icon_state = "sat_beam", time = 3 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3.5 SECONDS, TIMER_DELETE_ME) + else + visible_message(span_danger("The [src]'s gauntlet glows silver!")) + if(isliving(A)) + addtimer(CALLBACK(src, PROC_REF(gravity_pull), A), 3 SECOND, TIMER_DELETE_ME) //The Precursor intative big folks /mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter //lunar melee unit name = "Lunar Eclipse Titan Hunter" - health = 120 - maxHealth = 120 desc = "A strange being with resistance to brunt force trauma." icon_state = "eclipse_titan" icon_living = "eclipse_titan" @@ -908,6 +697,11 @@ projectiletype = null ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/melee/energy/spear = 15 + ) + /mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter/apply_melee_effects(atom/A) if(isliving(A)) var/mob/living/L = A @@ -923,61 +717,18 @@ visible_message(span_danger("\The [src] hits \the [L] with incredible force, to no visible effect!")) playsound(src, "punch", 50, 1) - -/mob/living/simple_mob/humanoid/eclipse/solar/nuclear - name = "Solar Eclipse Nuclear Technician" - health = 120 - maxHealth = 120 - desc = "A strange being wearing a burn resistaint coat." - icon_state = "eclipse_nuke" - projectiletype = /obj/item/projectile/energy/declone - special_attack_cooldown = 15 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 9 - specialattackprojectile = /obj/item/projectile/arc/radioactive/weak - - -/obj/item/projectile/arc/radioactive/weak - rad_power = 25 - -/mob/living/simple_mob/humanoid/eclipse/solar/nuclear/do_special_attack(atom/A) - visible_message(span_warning("\The [src] begins to glow green!")) - Beam(A, icon_state = "sat_beam", time = 3 SECONDS, maxdistance = INFINITY) - addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3 SECONDS, TIMER_DELETE_ME) - - -//Vistors of the other -//One is a familiar shape from Sif, the other is new and anomalous based. -/mob/living/simple_mob/humanoid/eclipse/solar/froststalker //teleporting stalker - name = "Solar Eclipse Froststalker" - health = 120 - maxHealth = 120 - desc = "A somewhat see through being wearing a burn resistaint coat." - melee_damage_lower = 10 - melee_damage_upper = 10 - attack_armor_pen = 40 - special_attack_cooldown = 25 SECONDS - special_attack_min_range = 1 - special_attack_max_range = 7 - projectiletype = null - ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax - icon_state = "froststalker" - icon_living = "froststalker" - cold_resist = 1.0 - melee_attack_delay = 1.5 - -/mob/living/simple_mob/humanoid/eclipse/solar/froststalker/do_special_attack(atom/A) - teleport(A) - /mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver name = "Lunar Eclipse Abyss Diver" - health = 120 - maxHealth = 120 desc = "A strange being wearing a blunt resistaint coat." - projectiletype = /obj/item/projectile/scatter/shotgun + projectiletype = /obj/item/projectile/ion/pistol icon_state = "eclipse_diver" //note to self try to redo this sprite sometime reload_max = 1 - reload_time = 2 SECONDS + reload_time = 1.5 SECOND + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/bone/skull = 100, + /obj/item/disposable_teleporter = 15 + ) /mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver/do_special_attack(atom/A) visible_message(span_danger("\The [src] begins to mess with a wrist mounted device.")) @@ -986,6 +737,34 @@ else if(istype(A, /obj/mecha)) addtimer(CALLBACK(src, PROC_REF(remote_eject), A), 3 SECONDS, TIMER_DELETE_ME) +/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish + name = "Lunar Eclipse Service" + desc = "A strange being wearing a blunt resistaint coat." + icon_state = "miner" + icon_living = "miner" + projectiletype = /obj/item/projectile/bullet/pistol/hp + + loot_list = list(/obj/item/slime_extract/sepia = 1, + /obj/item/slime_extract/ruby = 100, + /obj/item/slime_extract/amber = 15 + ) + +/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish/handle_special() + if(stat != DEAD) + heal_aura() + ..() + +/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish/proc/heal_aura() + for(var/mob/living/L in view(src, 4)) + if(L.stat == DEAD || !IIsAlly(L)) + continue + L.add_modifier(/datum/modifier/technomancer/repel_missiles, null, src) + + +/mob/living/simple_mob/mechanical/ward/monitor/eclipse + faction = FACTION_ECLIPSE +//Spcial attacks + /mob/living/simple_mob/humanoid/eclipse/proc/remote_shutdown(var/mob/living/silicon/robot/L) if(!L) return @@ -1004,3 +783,17 @@ return var/obj/item/projectile/P = new specialattackprojectile(get_turf(src)) P.launch_projectile(A, BP_TORSO, src) + +/mob/living/simple_mob/humanoid/eclipse/proc/gravity_pull(mob/living/L) + if(!L) + return + L.throw_at(src, 2, 4) // Just yoinked. + +/mob/living/simple_mob/humanoid/eclipse/proc/itemyoink(mob/living/carbon/human/H) + if(!H) + return + var/obj/item/I = H.get_active_hand() + H.drop_item() + if(I) + I.throw_at(src, 2, 4) // Just yoinked. + src.visible_message(span_danger("The [name] heaves, pulling \the [H]'s weapon from their hands!")) diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/heads.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/heads.dm index 90d6bf9a5b..b13a1a3b31 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/heads.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/heads.dm @@ -20,81 +20,28 @@ special_attack_cooldown = 10 SECONDS special_attack_min_range = 1 special_attack_max_range = 8 + has_heal_droid = TRUE + specialattackprojectile = /obj/item/projectile/bullet/dragon loot_list = list(/obj/item/gun/energy/flamegun = 100, /obj/item/bone/skull = 100 ) - -/mob/living/simple_mob/humanoid/eclipse/head/security/updatehealth() - . = ..() - - if(vore_fullness == 1) - ranged_cooldown = 8 - projectiletype = /obj/item/projectile/energy/flamecrystal - else if(vore_fullness == 2) - ranged_cooldown = 12 - projectiletype = /obj/item/projectile/energy/fireball - else if (vore_fullness > 2) - ranged_cooldown = 16 - projectiletype = /obj/item/projectile/energy/fireball - else - ranged_cooldown = 5 - /mob/living/simple_mob/humanoid/eclipse/head/security/do_special_attack(atom/A) - if(vore_fullness < 2) + if(vore_fullness > 3) + bomb_chaos(A) + else if(vore_fullness > 0) + visible_message(span_warning("\The [src]'s maw glows!")) + Beam(A, icon_state = "sat_beam", time = 2.5 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(special_projectile), A), 3 SECONDS, TIMER_DELETE_ME) + else if(prob(50)) - rapidfire(A) + visible_message(span_warning("\The [src] throws out a chain!")) + Beam(A, icon_state = "chain", time = 3 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(gravity_pull), A), 3 SECOND, TIMER_DELETE_ME) else - tornado_maw(A) - else if(vore_fullness == 2) - tornado_maw(A) - else if(vore_fullness > 2) - if(prob(50)) - deathtoll(A) - else - tornado_maw(A) - -/mob/living/simple_mob/humanoid/eclipse/head/security/proc/rapidfire(atom/A) - var/obj/item/projectile/P = new /obj/item/projectile/energy/flamecrystal(get_turf(src)) - P.launch_projectile(A, BP_TORSO, src) - sleep(1) - P.launch_projectile(A, BP_TORSO, src) - sleep(1) - P.launch_projectile(A, BP_TORSO, src) - sleep(1) - P.launch_projectile(A, BP_TORSO, src) - sleep(1) - P.launch_projectile(A, BP_TORSO, src) - -/mob/living/simple_mob/humanoid/eclipse/head/security/proc/tornado_maw(atom/A) - var/turf/T = get_turf(src) - - var/datum/effect/effect/system/grav_pull/s1 = new /datum/effect/effect/system/grav_pull - s1.set_up(5, 1, T) - s1.start() - -/mob/living/simple_mob/humanoid/eclipse/head/security/proc/deathtoll(atom/A) - var/list/potential_targets = ai_holder.list_targets() - for(var/atom/entry in potential_targets) - if(istype(entry, /mob/living/simple_mob/humanoid/eclipse)) - potential_targets -= entry - if(potential_targets.len) - var/iteration = clamp(potential_targets.len, 1, 3) - for(var/i = 0, i < iteration, i++) - if(!(potential_targets.len)) - break - var/mob/target = pick(potential_targets) - potential_targets -= target - deathtollfollow(target) - -/mob/living/simple_mob/humanoid/eclipse/head/security/proc/deathtollfollow(atom/target) - var/list/bomb_range = block(locate(target.x-6, target.y-6, target.z), locate(target.x+6, target.y+6, target.z)) - var/obj/item/projectile/P = new /obj/item/projectile/bullet/flamegun(get_turf(src)) - bomb_range -= get_turf(target) - for(var/i = 0, i < 4, i++) - var/turf/T = pick(bomb_range) - P.launch_projectile(target, BP_TORSO, src) - bomb_range -= T + visible_message(span_warning("\The [src] throws out a chain!")) + Beam(A, icon_state = "chain", time = 3 SECONDS, maxdistance = INFINITY) + addtimer(CALLBACK(src, PROC_REF(itemyoink), A), 3 SECOND, TIMER_DELETE_ME) /obj/item/projectile/energy/flamecrystal name = "Flame Crystal" @@ -132,9 +79,11 @@ special_attack_max_range = 10 projectiletype = /obj/item/projectile/bullet/pistol/ap - loot_list = list(/obj/item/circuitboard/mecha/hades/targeting = 100, - /obj/item/circuitboard/mecha/hades/peripherals = 100, - /obj/item/circuitboard/mecha/hades/main = 100, + loot_list = list(/obj/item/circuitboard/mecha/imperion/targeting = 60, + /obj/item/circuitboard/mecha/gygax/peripherals = 60, + /obj/item/prop/alien/phasecoil = 60, + /obj/item/circuitboard/mecha/durand/peripherals = 60, + /obj/item/bluespace_harpoon = 10, /obj/item/bone/skull = 100 ) @@ -173,184 +122,18 @@ /mob/living/simple_mob/mechanical/hivebot/swarm/eclipse faction = FACTION_ECLIPSE +/mob/living/simple_mob/mechanical/combat_drone/artillery + faction = FACTION_ECLIPSE + projectiletype = /obj/item/projectile/arc/blue_energy /mob/living/simple_mob/humanoid/eclipse/head/captain name = "Eclipse Expedition Leader" icon_state = "captain" - loot_list = list(/obj/item/slime_extract/dark = 20, - /obj/item/prop/alien/junk = 60, - /obj/random/tool/alien = 60, - /obj/random/tool/alien = 60, - /obj/item/cell/device/weapon/recharge/alien = 60, - /obj/random/tool/alien = 60, - /obj/item/cell/device/weapon/recharge/alien = 60, - /obj/item/bluespace_harpoon = 60, - /obj/item/flame/lighter/supermatter/syndismzippo = 60, - /obj/item/gun/energy/medigun = 60, - /obj/item/bone/skull = 100 - ) - - var/obj/item/shield_projector/shield1 = null - -/mob/living/simple_mob/humanoid/eclipse/head/captain/Initialize(mapload) - shield1 = new /obj/item/shield_projector/rectangle/automatic/eclipse/big(src) - -/mob/living/simple_mob/humanoid/eclipse/head/captain/updatehealth() //This is a mistake - . = ..() - - if(vore_fullness == 1) - ranged_cooldown = 4 - projectiletype = /obj/item/projectile/energy/frostsphere - movement_cooldown = 1 - melee_attack_delay = 1.3 - melee_damage_lower = 20 - melee_damage_upper = 35 - armor = list(melee = 35, bullet = 35, laser = 35, energy = 35, bomb = 100, bio = 100, rad = 100) - armor_soak = list(melee = 7, bullet = 7, laser = 7, energy = 7, bomb = 0, bio = 0, rad = 0) - special_attack_cooldown = 15 - else if(vore_fullness == 2) - ranged_cooldown = 0.5 - projectiletype = /obj/item/projectile/energy/muckblob - movement_cooldown = 2 - melee_attack_delay = 1.8 - melee_damage_lower = 20 - melee_damage_upper = 40 - armor = list(melee = 50, bullet = 50, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100) - armor_soak = list(melee = 6, bullet = 6, laser = 6, energy = 6, bomb = 0, bio = 0, rad = 0) - special_attack_cooldown = 20 - else if (vore_fullness > 2) - ranged_cooldown = 16 - projectiletype = /obj/item/projectile/energy/mob/ionbeam - movement_cooldown = 3 - melee_attack_delay = 2 - melee_damage_lower = 30 - melee_damage_upper = 40 - armor = list(melee = 60, bullet = 60, laser = 60, energy = 60, bomb = 100, bio = 100, rad = 100) - armor_soak = list(melee = 5, bullet = 5, laser = 5, energy = 5, bomb = 0, bio = 0, rad = 0) - special_attack_cooldown = 30 - else - ranged_cooldown = 8 - projectiletype = /obj/item/projectile/bullet/flamegun - movement_cooldown = 0 - melee_attack_delay = 1.1 - melee_damage_lower = 20 - melee_damage_upper = 25 - armor = list(melee = 20, bullet = 20, laser = 20, energy = 20, bomb = 100, bio = 100, rad = 100) - armor_soak = list(melee = 7, bullet = 7, laser = 7, energy = 7, bomb = 0, bio = 0, rad = 0) - special_attack_cooldown = 10 - - -/mob/living/simple_mob/humanoid/eclipse/head/captain/do_special_attack(atom/A) //note to self, try to make fullness alts for this attacks - if(prob(20)) - invokesec(A) - else if(prob(20)) - invokesci(A) - else if(prob(20)) - invokeengi(A) - else if(prob(20)) - invokemedical(A) - else - invokecargo(A) - - -/mob/living/simple_mob/humanoid/eclipse/head/captain/proc/invokesec(atom/A) - var/list/potential_targets = ai_holder.list_targets() - for(var/atom/entry in potential_targets) - if(istype(entry, /mob/living/simple_mob/humanoid/eclipse)) - potential_targets -= entry - if(potential_targets.len) - var/iteration = clamp(potential_targets.len, 1, 3) - for(var/i = 0, i < iteration, i++) - if(!(potential_targets.len)) - break - var/mob/target = pick(potential_targets) - potential_targets -= target - secattack(target) - -/mob/living/simple_mob/humanoid/eclipse/head/captain/proc/secattack(atom/target) - var/list/bomb_range = block(locate(target.x-4, target.y-4, target.z), locate(target.x+4, target.y+4, target.z)) - var/obj/item/projectile/P = new /obj/item/projectile/energy/flamecrystal(get_turf(src)) - bomb_range -= get_turf(target) - for(var/i = 0, i < 4, i++) - var/turf/T = pick(bomb_range) - P.launch_projectile(target, BP_TORSO, src) - bomb_range -= T - -/mob/living/simple_mob/humanoid/eclipse/head/captain/proc/invokecargo(atom/A) - visible_message(span_warning("\The [src] calls for their help on radio!")) - -/mob/living/simple_mob/humanoid/eclipse/head/captain/proc/invokeengi(atom/A) //place holdery - var/obj/item/projectile/P = new /obj/item/projectile/temp(get_turf(src)) - P.launch_projectile(A, BP_TORSO, src) - var/obj/item/projectile/P2 = new /obj/item/projectile/temp/hot(get_turf(src)) - P2.launch_projectile(A, BP_TORSO, src) - -/mob/living/simple_mob/humanoid/eclipse/head/captain/proc/invokesci(atom/A) - visible_message(span_warning("\The [src] begins to fabricate drones!")) - sleep(3) - new /mob/living/simple_mob/mechanical/hivebot/swarm/eclipse (src.loc) - new /mob/living/simple_mob/mechanical/hivebot/swarm/eclipse (src.loc) - new /mob/living/simple_mob/mechanical/hivebot/swarm/eclipse (src.loc) - -/mob/living/simple_mob/humanoid/eclipse/head/captain/proc/invokemedical(atom/A) - visible_message(span_warning("\The [src] begins to tend to their wounds!")) - sleep(3) - adjustBruteLoss(-12) - adjustFireLoss(-12) - adjustToxLoss(-12) - adjustOxyLoss(-12) - adjustCloneLoss(-12) - - -/mob/living/simple_mob/humanoid/eclipse/head/shade - name = "???" - icon_state = "shade" - health = 300 - maxHealth = 300 //18 20 damage shots - - armor = list(melee = 20, bullet = 20, laser = 20, energy = 20, bomb = 100, bio = 100, rad = 100) - - projectiletype = /obj/item/projectile/bullet/lightingburst - - special_attack_cooldown = 10 SECONDS - special_attack_min_range = 0 - special_attack_max_range = 7 - - loot_list = list(/obj/item/gun/energy/pulseglove = 100 - ) - - -/mob/living/simple_mob/humanoid/eclipse/head/shade/do_special_attack(atom/A) - var/list/potential_targets = ai_holder.list_targets() - for(var/atom/entry in potential_targets) - if(istype(entry, /mob/living/simple_mob/humanoid/eclipse)) - potential_targets -= entry - if(potential_targets.len) - var/iteration = clamp(potential_targets.len, 1, 5) - for(var/i = 0, i < iteration, i++) - if(!(potential_targets.len)) - break - var/mob/target = pick(potential_targets) - potential_targets -= target - bullethell(target) - -/mob/living/simple_mob/humanoid/eclipse/head/shade/proc/bullethell(atom/target) - var/list/bomb_range = block(locate(target.x-6, target.y-6, target.z), locate(target.x+6, target.y+6, target.z)) - var/obj/item/projectile/P = new /obj/item/projectile/bullet/meteorstorm(get_turf(src)) - bomb_range -= get_turf(target) - for(var/i = 0, i < 4, i++) - var/turf/T = pick(bomb_range) - P.launch_projectile(target, BP_TORSO, src) - bomb_range -= T - -/mob/living/simple_mob/mechanical/combat_drone/artillery - faction = FACTION_ECLIPSE - projectiletype = /obj/item/projectile/arc/blue_energy - /mob/living/simple_mob/humanoid/eclipse/head/tyrlead name = "Eclipse Precursor Overseer" icon_state = "overseer_shield" + icon_living = "overseer_shield" special_attack_cooldown = 4 SECONDS special_attack_min_range = 1 special_attack_max_range = 8 @@ -392,18 +175,29 @@ /mob/living/simple_mob/humanoid/eclipse/head/engineer //teshari name = "Eclipse Chief Engineer" + icon_state = "engi" + icon_living = "engi" health = 50 maxHealth = 50 melee_damage_lower = 60 //Durasteel fireaxe melee_damage_upper = 60 projectiletype = null + loot_list = list(/obj/item/stock_parts/matter_bin/omni = 60, + /obj/item/material/twohanded/fireaxe = 60, + /obj/item/storage/toolbox/syndicate/powertools = 60, + /obj/item/rig/ce = 60, + /obj/item/rig_module/teleporter = 5 + ) + /mob/living/simple_mob/humanoid/eclipse/head/engineer/Initialize() add_modifier(/datum/modifier/technomancer/haste, null, src) // tesh goes nyooooom return ..() -/mob/living/simple_mob/humanoid/eclipse/head/medical //noodl +/mob/living/simple_mob/humanoid/eclipse/head/medical name = "Eclipse Chief Medical Officer" + icon_state = "medi" + icon_living = "medi" health = 150 maxHealth = 150 special_attack_cooldown = 5 SECONDS @@ -413,6 +207,16 @@ melee_damage_upper = 15 attack_armor_pen = 60 projectiletype = null + + loot_list = list(/obj/item/rig_module/atmos_shield = 60, + /obj/item/rig_module/rad_shield/advanced = 60, + /obj/item/rig/baymed = 60, + /obj/item/ammo_casing/microbattery/medical/brute3 = 15, + /obj/item/ammo_casing/microbattery/medical/burn3 = 15, + /obj/item/ammo_casing/microbattery/medical/toxin3 = 15, + /obj/item/ammo_casing/microbattery/medical/omni3 = 5 + ) + var/cloaked_alpha = 45 // Lower = Harder to see. var/cloak_cooldown = 5 SECONDS // Amount of time needed to re-cloak after losing it. var/last_uncloak = 0 // world.time @@ -685,4 +489,4 @@ if(!L.apply_damage(70, BURN, target_zone, blocked, soaked)) break playsound(src, 'sound/effects/clang2.ogg', 50, 1) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), src), 0.25 SECONDS, TIMER_DELETE_ME) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), src), 0.25 SECONDS, TIMER_DELETE_ME) \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/lore.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/lore.dm index e1f51e2dfc..308248aa08 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/lore.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/lore.dm @@ -9,34 +9,6 @@ value = CATALOGUER_REWARD_TRIVIAL unlocked_by_any = list(/datum/category_item/catalogue/fauna/eclipse) -// Obtained by scanning all X. -/datum/category_item/catalogue/fauna/all_eclipse - name = "Collection - Eclipse" - desc = "You have scanned a large array of different types of eclipse memebers, \ - and therefore you have been granted a large sum of points, through this \ - entry." - value = CATALOGUER_REWARD_SUPERHARD - unlocked_by_all = list( - /datum/category_item/catalogue/fauna/eclipse/teslanoodle, - /datum/category_item/catalogue/fauna/eclipse/firemoff, - /datum/category_item/catalogue/fauna/eclipse/snipertesh, - /datum/category_item/catalogue/fauna/eclipse/radiation, - /datum/category_item/catalogue/fauna/eclipse/silvernoodle, - /datum/category_item/catalogue/fauna/eclipse/shotgunner, - /datum/category_item/catalogue/fauna/eclipse/bulletstorm, - /datum/category_item/catalogue/fauna/eclipse/ravanger, - /datum/category_item/catalogue/fauna/eclipse/hellhound, - /datum/category_item/catalogue/fauna/eclipse/wheel, - /datum/category_item/catalogue/fauna/eclipse/guardian, - /datum/category_item/catalogue/fauna/eclipse/pummler, - /datum/category_item/catalogue/fauna/eclipse/aeroblaster, - /datum/category_item/catalogue/fauna/eclipse/miner, - /datum/category_item/catalogue/fauna/eclipse/froststalker, - /datum/category_item/catalogue/fauna/eclipse/cryomancer - ) - -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/teslanoodle) /datum/category_item/catalogue/fauna/eclipse/teslanoodle name = "The Tesla Armor" @@ -45,9 +17,6 @@ random. This creation seems to be in a prototype phase." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/firemoff - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/firemoff) - /datum/category_item/catalogue/fauna/eclipse/firemoff name = "Eclipse Shielding" desc = "Eclipse armor and uniform is unlike most others, seeming wide \ @@ -58,9 +27,6 @@ diverse apperance." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/snipertesh) - /datum/category_item/catalogue/fauna/eclipse/snipertesh name = "Cult-like rituals" desc = "The Eclipse started off as a strange mixutre of a friendly \ @@ -70,8 +36,6 @@ mixed results, rarely resulting in in-fighting." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/radiation - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/radiation) /datum/category_item/catalogue/fauna/eclipse/radiation name = "Nuclear Failures" @@ -82,8 +46,6 @@ power sources to radiation field generators." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/silvernoodle) /datum/category_item/catalogue/fauna/eclipse/silvernoodle name = "Failed Selling" @@ -94,8 +56,7 @@ medication are one of the few reasons they have not wiped themselves out." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/shotgunner) + /datum/category_item/catalogue/fauna/eclipse/shotgunner name = "Specialized Arms" @@ -105,8 +66,6 @@ Although this leads to weapon failures, or creation accidents." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/bulletstorm) /datum/category_item/catalogue/fauna/eclipse/bulletstorm name = "Open Joining" @@ -115,9 +74,6 @@ high mortality rates, mutations, and body modification expermintation." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/ravanger) - /datum/category_item/catalogue/fauna/eclipse/ravanger name = "Resleeving Failures" desc = "The Eclipse has precourdered many bits of resleeving equipment \ @@ -127,9 +83,6 @@ such as shaping them into ravanger units." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/hellhound) - /datum/category_item/catalogue/fauna/eclipse/hellhound name = "Hellhound Units" desc = "Equiped with specialized armor, the systems of the suit pairing \ @@ -139,9 +92,6 @@ hunting, and frontal assualt." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/wheel) - /datum/category_item/catalogue/fauna/eclipse/wheel name = "Armadillo" desc = "With several strange creatures among their ranks, the Eclipse \ @@ -150,9 +100,6 @@ a rolling motion into an offensive force." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/guardian - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/guardian) - /datum/category_item/catalogue/fauna/eclipse/guardian name = "Slime Pits" desc = "Another potential of failed resleeves are the slime pits, \ @@ -162,9 +109,6 @@ renamants of the donator's DNA." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/pummler - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/pummler) - /datum/category_item/catalogue/fauna/eclipse/pummler name = "Hunter Unit - Pummler" desc = "Another drone like creation, meld with alien sea life, and traces \ @@ -174,9 +118,6 @@ targets across any and all terrains." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/pummler) - /datum/category_item/catalogue/fauna/eclipse/aeroblaster name = "Eclipse Drones" desc = "Sometimes, the failed resleeves only leave the fragments of a mind \ @@ -185,9 +126,6 @@ their drones." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/lunar/miner - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/miner) - /datum/category_item/catalogue/fauna/eclipse/miner name = "Bio-tech Unit" desc = "One benefit of the slime units is they're able to easily interface \ @@ -196,8 +134,6 @@ both being able to flee or alter plans as soon as either noitces." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/froststalker - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/froststalker) /datum/category_item/catalogue/fauna/eclipse/froststalker name = "Mindless Ice" @@ -207,9 +143,6 @@ of ice. Their minds sometimes lost alongside their orginal form." value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/humanoid/eclipse/solar/cryomancer - catalogue_data = list(/datum/category_item/catalogue/fauna/eclipse/cryomancer) - /datum/category_item/catalogue/fauna/eclipse/cryomancer name = "Cryomancers" desc = "One of the few success in the Pluto Intitative, but one that \ diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/mechas.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/mechas.dm index d2139621aa..82a82c82f0 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/mechas.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/eclipse/mechas.dm @@ -268,7 +268,7 @@ specialattackprojectile = /obj/item/projectile/beam/midlaser armor = list(melee = 90, bullet = 90, laser = 90, energy = 90, bomb = 90, bio = 100, rad = 100) damage_threshold = 0 //So the wierd armor mechanic works - icon_state = "gygax_adv" + icon_state = "orb" wreckage = /obj/structure/loot_pile/mecha/odd_gygax special_attack_cooldown = 320 @@ -958,4 +958,91 @@ /mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt/proc/phasethree_cyclethree(atom/target) //eight spinning death beams specialattackprojectile = /obj/item/projectile/energy/darkspike addtimer(CALLBACK(src, PROC_REF(random_firing), target, 20, 1, 0.2 SECONDS), 0.5 SECONDS, TIMER_DELETE_ME) - attackcycle = 0 \ No newline at end of file + attackcycle = 0 + +/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha + name = "Eclipse Expirmental Mining Mecha" + health = 300 + maxHealth = 300 + specialattackprojectile = /obj/item/projectile/energy/excavate/weak + armor = list(melee = 30, bullet = 30, laser = 30, energy = 40, bomb = 90, bio = 100, rad = 100) + armor_soak = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + icon_state = "engi_spider" + shock_resist = 1 + projectiletype = /obj/item/projectile/beam/chain_lightning + reload_max = 1 + reload_time = 0.5 SECONDS + ranged_attack_delay = 2 SECONDS + + glow_color = "#14ff20" + light_color = "#14ff20" + glow_range = 5 + glow_intensity = 3 + + special_attack_cooldown = 120 + + pilot_type = /mob/living/simple_mob/humanoid/eclipse/head/engineer + + var/rads = 5 + +/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha/do_special_attack(atom/A) + rads += 15 + +/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha/handle_special() + if(stat != DEAD) + irradiate() + ..() + +/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha/proc/irradiate() + SSradiation.radiate(src, rads) + +/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha/ranged_pre_animation(atom/A) + Beam(get_turf(A), icon_state = "sniper_beam", time = 2 SECONDS, maxdistance = 15) + . = ..() + +/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha/shoot_target(atom/A) + set waitfor = FALSE + + if(!istype(A) || QDELETED(A)) + return + + setClickCooldown(get_attack_speed()) + + face_atom(A) + + var/atom/orig_targ = A + + if(ranged_attack_delay) + A = get_turf(orig_targ) + ranged_pre_animation(A) + handle_attack_delay(A, ranged_attack_delay) // This will sleep this proc for a bit, which is why waitfor is false. + + if(needs_reload) + if(reload_count >= reload_max) + try_reload() + return FALSE + + /* + * CHOMP Addition: This section here is (duplicated) special snowflake code because sniper does not call parent. Basically, this is a non-stupid version of the above intended for ranged mobs. + * ranged_attack_delay is stupid because it sleeps the entire mob. + * This new ranged_cooldown_time is smarter in the sense that it is an internalized timer. Try not to confuse the names. + */ + if(ranged_cooldown_time) //If you have a non-zero number in a mob's variables, this pattern begins. + if(ranged_cooldown <= world.time) //Further down, a timer keeps adding to the ranged_cooldown variable automatically. + visible_message(span_bolddanger("\The [src]") + " fires at \the [A]!") //Leave notice of shooting. + shoot(A) //Perform the shoot action + if(casingtype) //If the mob is designated to leave casings... + new casingtype(loc) //... leave the casing. + ranged_cooldown = world.time + ranged_cooldown_time + ((injury_level / 2) SECONDS) //Special addition here. This is a timer. Keeping updating the time after shooting. Add that ranged cooldown time specified in the mob to the world time. + return TRUE //End these commands here. + // CHOMPAddition End + + visible_message(span_bolddanger("\The [src]") + " fires at \the [orig_targ]!") + shoot(A) + if(casingtype) + new casingtype(loc) + + if(ranged_attack_delay) + ranged_post_animation(A) + + return TRUE \ No newline at end of file diff --git a/modular_chomp/icons/mob/eclipse.dmi b/modular_chomp/icons/mob/eclipse.dmi index 78d1af7212..d28415883b 100644 Binary files a/modular_chomp/icons/mob/eclipse.dmi and b/modular_chomp/icons/mob/eclipse.dmi differ diff --git a/modular_chomp/icons/mob/tyr.dmi b/modular_chomp/icons/mob/tyr.dmi index 260a020d5c..dbfa3aba0b 100644 Binary files a/modular_chomp/icons/mob/tyr.dmi and b/modular_chomp/icons/mob/tyr.dmi differ diff --git a/modular_chomp/icons/obj/tribal_gear.dmi b/modular_chomp/icons/obj/tribal_gear.dmi index e150870b99..7366a9c81f 100644 Binary files a/modular_chomp/icons/obj/tribal_gear.dmi and b/modular_chomp/icons/obj/tribal_gear.dmi differ diff --git a/modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm index 8400cbeaa1..328e01e1bd 100644 --- a/modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm @@ -136,7 +136,7 @@ but they don't actually change anything about the load order list("Snow Field"), list("Maddness Lab"), list("Abandoned City"), - list("Distant Mining Facility"), +// list("Distant Mining Facility"), list("Skyscraper") ) //CHOMPedit: Gateway maps. For now nothing fancy, just some already existing maps while we make our own. diff --git a/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dm b/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dm index 68786684b3..447042426e 100644 --- a/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dm +++ b/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dm @@ -121,28 +121,159 @@ outdoors = OUTDOORS_NO /area/surface/tyr/eclipse_stronghold - name = "Base Neon - Hallways" + name = "Base Neon" icon_state = "bluenew" - requires_power = FALSE //note to self, remove when I figure out how engineering works outdoors = OUTDOORS_NO -/area/surface/tyr/eclipse_stronghold/sectora +/area/surface/tyr/eclipse_stronghold/sciencehalls + name = "Base Neon - Science Halls" + +/area/surface/tyr/eclipse_stronghold/creaturestorageA + name = "Base Neon - Creature Storage A" + +/area/surface/tyr/eclipse_stronghold/creaturestorageB + name = "Base Neon - Creature Storage B" + +/area/surface/tyr/eclipse_stronghold/toolstorage + name = "Base Neon - Tool Storage" + +/area/surface/tyr/eclipse_stronghold/meatstorage + name = "Base Neon - Meat Storage" + +/area/surface/tyr/eclipse_stronghold/slimeresearch + name = "Base Neon - Slime Den" + +/area/surface/tyr/eclipse_stronghold/breakroom + name = "Base Neon - Breakroom" + +/area/surface/tyr/eclipse_stronghold/poolroom + name = "Base Neon - Poolroom" + +/area/surface/tyr/eclipse_stronghold/bathroom + name = "Base Neon - Bathroom" + +/area/surface/tyr/eclipse_stronghold/showers + name = "Base Neon - Shower" + +/area/surface/tyr/eclipse_stronghold/researchleadoffice + name = "Base Neon - Head Scientist Study" + +/area/surface/tyr/eclipse_stronghold/furnace + name = "Base Neon - Furnace" + +//Medical area +/area/surface/tyr/eclipse_stronghold/medicalhalls + name = "Base Neon - Medical Halls" + +/area/surface/tyr/eclipse_stronghold/chemicalgas + name = "Base Neon - Distillery Storage" + +/area/surface/tyr/eclipse_stronghold/viro + name = "Base Neon - Virus Study" + +/area/surface/tyr/eclipse_stronghold/genetics + name = "Base Neon - Life Study" + +/area/surface/tyr/eclipse_stronghold/distillery + name = "Base Neon - Distillery" + +/area/surface/tyr/eclipse_stronghold/surgery + name = "Base Neon - Mass Operations" + +/area/surface/tyr/eclipse_stronghold/alienbotany + name = "Base Neon - Abnormal Botany" + +/area/surface/tyr/eclipse_stronghold/chemista + name = "Base Neon - Chemistry" + +/area/surface/tyr/eclipse_stronghold/chemistb + name = "Base Neon - Sub-Chemistry" + +/area/surface/tyr/eclipse_stronghold/cmooffice + name = "Base Neon - Lead Medical Officer Restzone" + +/area/surface/tyr/eclipse_stronghold/recoveryA + name = "Base Neon - Recovery Zone A" + +/area/surface/tyr/eclipse_stronghold/recoveryB + name = "Base Neon - Recovery Zone B" + +/area/surface/tyr/eclipse_stronghold/recoveryC + name = "Base Neon - Recovery Zone C" + +/area/surface/tyr/eclipse_stronghold/morgue + name = "Base Neon - Final Rest Zone" + +//sec areas +/area/surface/tyr/eclipse_stronghold/sechalls + name = "Base Neon - Security Halls" + +/area/surface/tyr/eclipse_stronghold/breakroom + name = "Base Neon - Breaking Room" + +/area/surface/tyr/eclipse_stronghold/jailhouse + name = "Base Neon - Jailhouse" + +/area/surface/tyr/eclipse_stronghold/secoffice + name = "Base Neon - Warden Office" + +/area/surface/tyr/eclipse_stronghold/stash + name = "Base Neon - Obtained Equipment Stash" + +//engi areas +/area/surface/tyr/eclipse_stronghold/engihalls + name = "Base Neon - Eletrical Halls" + +/area/surface/tyr/eclipse_stronghold/radequipmentA + name = "Base Neon - Glowing Equipment A" + +/area/surface/tyr/eclipse_stronghold/radequipmentB + name = "Base Neon - Glowing Equipment B" + +/area/surface/tyr/eclipse_stronghold/engihead + name = "Base Neon - Lighting Master Den" + +/area/surface/tyr/eclipse_stronghold/powerplantgens + name = "Base Neon - Main Generator" + +/area/surface/tyr/eclipse_stronghold/powerplantfuel + name = "Base Neon - Generator Battery" + +/area/surface/tyr/eclipse_stronghold/generatorA + name = "Base Neon - Backup Battery A" + +/area/surface/tyr/eclipse_stronghold/generatorB + name = "Base Neon - Backup Battery B" + +/area/surface/tyr/eclipse_stronghold/teslastorage + name = "Base Neon - Tesla Storage" + +//the cargo misc area +/area/surface/tyr/eclipse_stronghold/cargohalls + name = "Base Neon - Cargo Hall" + +/area/surface/tyr/eclipse_stronghold/cafe + name = "Base Neon - Cafe" + +/area/surface/tyr/eclipse_stronghold/antroom + name = "Base Neon - Antroom" + +/area/surface/tyr/eclipse_stronghold/miscstorage + name = "Base Neon - Misc Storage" + +/area/surface/tyr/eclipse_stronghold/filestorage + name = "Base Neon - File Storage" + +/area/surface/tyr/eclipse_stronghold/docks name = "Base Neon - Docks" -/area/surface/tyr/eclipse_stronghold/sectorb - name = "Base Neon - Security" +/area/surface/tyr/eclipse_stronghold/generatorC + name = "Base Neon - Backup Battery C" -/area/surface/tyr/eclipse_stronghold/sectorc - name = "Base Neon - Power Generator" - -/area/surface/tyr/eclipse_stronghold/sectord - name = "Base Neon - Dorms" - -/area/surface/tyr/eclipse_stronghold/sectore - name = "Base Neon - Dining Hall" /area/surface/tyr/eclipse_stronghold/sectorfinale name = "Precursor Ruins" + requires_power = FALSE /area/surface/tyr/precursorruins icon_state = "bluenew" diff --git a/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm b/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm index 0164ae8a42..4f95688e99 100644 --- a/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm +++ b/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm @@ -1,1231 +1,1998 @@ -"ac" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ad" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) +"ab" = (/obj/structure/toilet,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"ac" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"ad" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) "af" = (/turf/simulated/wall/solidrock,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"ah" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/sectore) +"ah" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) "aj" = (/obj/structure/prop/tyr_elevator,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"am" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/south_caverns) "an" = (/obj/effect/zone_divider,/turf/simulated/mineral/light/tyr,/area/surface/tyr/north_caverns) -"aq" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"as" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/airmaze) -"aw" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"ax" = (/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"aC" = (/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"aI" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) +"ao" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"ap" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"aq" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"at" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"ax" = (/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"az" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/surgery) +"aC" = (/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"aD" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"aE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"aF" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"aH" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"aI" = (/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"aJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) "aN" = (/obj/machinery/door/blast/puzzle/tyrdoor/finale,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"aP" = (/obj/structure/bed/chair/sofa/corner/black{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"aQ" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"aS" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/airmaze) -"aT" = (/obj/effect/floor_decal/corner/orange/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"aV" = (/obj/structure/closet,/obj/item/pickaxe/excavationdrill,/obj/item/xenoarch_multi_tool,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"aY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"aZ" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ba" = (/obj/effect/map_effect/interval/effect_emitter/sparks,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"bd" = (/obj/structure/window/plastitanium{dir = 4},/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/airmaze) -"bf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"bq" = (/obj/structure/table/steel,/obj/item/material/fishing_rod/modern/strong,/obj/item/material/fishing_net/butterfly_net,/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/sectore) -"bv" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"bx" = (/obj/structure/bed/chair/sofa/black{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"bz" = (/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"bB" = (/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) +"aO" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"aP" = (/obj/structure/bed/chair/sofa/corner/black{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"aQ" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"aR" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"aT" = (/obj/effect/floor_decal/corner/orange/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"aV" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"aX" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"aY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"aZ" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"bc" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"be" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/genetics) +"bf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"bg" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"bh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"bk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"bm" = (/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"bn" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"bp" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"bq" = (/obj/structure/table/steel,/obj/item/material/fishing_rod/modern/strong,/obj/item/material/fishing_net/butterfly_net,/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"bu" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"bv" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"bx" = (/obj/structure/bed/chair/sofa/black{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"bz" = (/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"bB" = (/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) "bE" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/north_caverns) -"bG" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/airmaze) -"bI" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/shuttle/floor/alienplating{phoron = 400},/area/surface/tyr/precursorruins/airmaze) -"bK" = (/obj/structure/prop/alien/computer/camera{dir = 1},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"bN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"bS" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"bT" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/spotthediffrence) -"bW" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"bX" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"bY" = (/obj/machinery/light/small{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"bZ" = (/turf/simulated/shuttle/floor/alienplating{phoron = 400},/area/surface/tyr/precursorruins/airmaze) -"cb" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"ce" = (/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/airmaze) -"ci" = (/obj/structure/window/plastitanium{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/airmaze) -"cj" = (/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlefour"},/obj/structure/table/gold,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"cn" = (/obj/machinery/light/small,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"co" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"cp" = (/turf/simulated/floor,/area/surface/tyr/north_caverns) -"cr" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"ct" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzleone"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"cv" = (/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"cz" = (/turf/simulated/floor/outdoors/ice/dark,/area/surface/tyr/precursorruins/finale) -"cB" = (/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"cD" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"cG" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/finale) -"cH" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"cI" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/clean,/obj/random/mainttoyloot/nofail,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"cK" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"cL" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"cP" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/southern_wilderness) -"cY" = (/obj/item/prop/alien/prototype,/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"cZ" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"db" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/huntery) -"de" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/sectore) -"df" = (/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"dg" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"dh" = (/obj/machinery/cryopod/robot/door/gateway/quiet,/turf/simulated/floor,/area/surface/tyr/huntery) -"di" = (/obj/structure/flora/tyr/flowers,/obj/structure/mob_spawner/ant_hill,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"dj" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/xenobio/monkey_gun,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"dk" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzleb) -"dl" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"dn" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"dv" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"dw" = (/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"dH" = (/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/huntery) -"dL" = (/obj/effect/zone_divider,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"dM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) +"bH" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"bJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"bK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"bL" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"bM" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"bN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"bS" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"bT" = (/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/structure/closet/crate,/obj/item/storage/fancy/blackcandle_box,/obj/item/storage/fancy/blackcandle_box,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"bV" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/huge,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"bW" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"bX" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"bY" = (/obj/machinery/light/small{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"bZ" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/precursorruins/finale) +"ca" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"cb" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"cd" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"cf" = (/obj/effect/zone_divider,/obj/structure/toilet,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"cl" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"cm" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"cn" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"co" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"cp" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"cq" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"cr" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"cs" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"ct" = (/obj/structure/table/wooden_reinforced,/obj/item/storage/bible,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"cu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"cv" = (/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"cy" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"cz" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"cB" = (/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"cD" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/biochemistry/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"cG" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"cH" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"cI" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/clean,/obj/random/mainttoyloot/nofail,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"cJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"cK" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/item/gun/projectile/cell_loaded/medical/cmo,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"cL" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"cM" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"cO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"cP" = (/obj/item/gun/energy/curse_tyrshotgun,/obj/item/clothing/head/helmet/alien,/obj/item/clothing/suit/armor/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"cR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"cT" = (/obj/item/prop/alien/prototype,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"cU" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"cV" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"cY" = (/obj/item/gun/energy/energyballchain,/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"cZ" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"da" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"dd" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"de" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/docks) +"df" = (/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"dg" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"dh" = (/obj/item/clothing/head/helmet/alien,/obj/item/clothing/suit/armor/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"di" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlesix"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"dj" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/xenobio/monkey_gun,/obj/effect/floor_decal/corner/purple/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"dk" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefive"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"dl" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"dn" = (/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"do" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"dp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"dr" = (/obj/random/vendordrink,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"ds" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"dt" = (/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"du" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"dv" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"dw" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/northern_wilderness; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_w"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) +"dy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"dB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"dE" = (/obj/structure/table/steel,/obj/item/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"dF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"dH" = (/obj/machinery/optable,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"dL" = (/obj/effect/zone_divider,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"dM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"dO" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"dP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"dR" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"dU" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"dV" = (/obj/machinery/power/tesla_coil/recaster,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) "dW" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"dY" = (/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"ea" = (/obj/structure/table/standard,/obj/item/walkpod,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) +"dX" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/big,/obj/random/mega_nukies,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"dY" = (/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"ea" = (/obj/structure/table/standard,/obj/item/walkpod,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) "eb" = (/mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"ed" = (/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"ef" = (/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckC"; opacity = 0},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"ed" = (/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"ef" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzleone"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) "ei" = (/obj/structure/flora/tyr/flowers,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"ek" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"ep" = (/obj/item/archaeological_find,/obj/item/archaeological_find,/obj/random/research_sample_type1,/obj/random/research_sample_type2,/obj/random/research_sample_type3,/obj/structure/closet,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"er" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"es" = (/obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ez" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckA"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckB"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckC"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckD"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"eA" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"eG" = (/obj/item/inflatable_duck,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"eL" = (/obj/structure/bed/chair/sofa/black,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"eM" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectorb) -"eO" = (/obj/machinery/processor,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"eU" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"eW" = (/mob/living/simple_mob/mechanical/mecha/eclipse/antipersonal_unit,/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"eX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"eY" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"eZ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fc" = (/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fe" = (/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"ff" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"fh" = (/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"fk" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"fm" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"fp" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"fr" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"ft" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fu" = (/obj/structure/prop/alien/computer/hybrid{dir = 1},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"fw" = (/obj/machinery/vending/fooddessert,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"fx" = (/obj/structure/table/gold,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"fI" = (/obj/machinery/shower,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"fJ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"fK" = (/obj/structure/table/standard,/obj/item/surgical/bonesetter,/turf/simulated/floor,/area/surface/tyr/huntery) -"fM" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fO" = (/obj/structure/table/standard,/obj/item/universal_translator,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"fQ" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/finale) -"fS" = (/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckD"; opacity = 0},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"ga" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"gb" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"gf" = (/obj/machinery/light/small{dir = 4},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gk" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gm" = (/obj/structure/bed/chair/bay/chair/padded{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gq" = (/obj/random/crate,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"gr" = (/obj/structure/bed/chair/sofa/black{dir = 4},/mob/living/simple_mob/humanoid/eclipse/head/scientist,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"gy" = (/obj/structure/prop/alien/computer,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"gA" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"gB" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"gD" = (/obj/structure/closet,/obj/random/maintenance/misc,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"gG" = (/obj/structure/sink{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"gH" = (/obj/structure/bed/chair/bay/chair/padded{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gN" = (/obj/structure/toilet/prison,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"gO" = (/obj/machinery/light/small,/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/sectore) -"gP" = (/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"gU" = (/mob/living/simple_mob/slime/xenobio/ruby,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"gV" = (/obj/machinery/light/small,/obj/item/tool/transforming/altevian,/obj/item/perfect_tele/frontier,/obj/structure/safe,/obj/item/disposable_teleporter,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"gX" = (/obj/structure/bed/chair/bay/chair/padded,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"ha" = (/obj/structure/bed/chair/bay/chair/padded,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"hd" = (/turf/simulated/floor/water/indoors,/area/surface/tyr/eclipse_stronghold/sectore) -"he" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"hi" = (/obj/effect/zone_divider,/turf/simulated/wall/shull,/area/surface/tyr/huntery) -"hk" = (/turf/simulated/floor/lava,/area/surface/tyr/precursorruins/finale) -"hm" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"hq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"hx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"hA" = (/obj/structure/bed/chair/sofa/black,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"hB" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"hG" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"hH" = (/obj/structure/prop/alien/computer{dir = 1},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"hM" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"hR" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"hT" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/engineering,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"hV" = (/obj/structure/closet,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"hW" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ig" = (/obj/machinery/vending/altevian,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"ii" = (/obj/item/archaeological_find,/obj/item/archaeological_find,/obj/random/research_sample_type1,/obj/random/research_sample_type2,/obj/random/research_sample_type3,/obj/structure/closet,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"ik" = (/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"im" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"in" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"io" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ip" = (/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/sectore) -"iq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ir" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"iv" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"ix" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/sectore) -"iy" = (/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iA" = (/obj/structure/fuel_port/heavy{dir = 41; pixel_y = 24},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"iB" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"iE" = (/obj/structure/table/wooden_reinforced,/obj/item/flame/candle/everburn,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"iF" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlea) -"iG" = (/mob/living/simple_mob/slime,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"iI" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"iJ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"iN" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"iP" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iQ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iS" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"iU" = (/obj/machinery/vending/snack,/obj/machinery/light/small,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) +"ek" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"em" = (/obj/effect/zone_divider,/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/engihead) +"en" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"eo" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"ep" = (/obj/item/archaeological_find,/obj/item/archaeological_find,/obj/random/research_sample_type1,/obj/random/research_sample_type2,/obj/random/research_sample_type3,/obj/structure/closet,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"er" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"es" = (/obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"et" = (/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"eu" = (/obj/structure/bed/padded,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"ev" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"ex" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ez" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzletwo"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"eA" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"eB" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"eE" = (/obj/structure/toilet/prison{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"eG" = (/obj/item/inflatable_duck,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"eH" = (/obj/structure/window/plastitanium{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"eJ" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"eL" = (/obj/structure/bed/chair/sofa/black,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"eM" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/jailhouse) +"eO" = (/obj/machinery/processor,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"eQ" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"eR" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"eT" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"eU" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"eV" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"eW" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"eX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"eY" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"eZ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"fa" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"fb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"fc" = (/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"fd" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"fe" = (/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"ff" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"fg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"fh" = (/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"fi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"fk" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"fl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"fm" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"fp" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"fr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"ft" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"fu" = (/obj/item/prop/alien/prototype,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"fw" = (/obj/machinery/vending/fooddessert,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"fx" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefour"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"fy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"fA" = (/obj/machinery/atmospherics/pipe/simple/hidden,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"fC" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"fF" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"fH" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"fI" = (/obj/machinery/shower,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"fJ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"fK" = (/obj/machinery/door/blast/puzzle/tyrdoor/finale,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"fL" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"fM" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"fO" = (/obj/structure/table/standard,/obj/item/universal_translator,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"fP" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/medical,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"fQ" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"fR" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/teslastorage) +"fS" = (/obj/item/prop/alien/prototype,/obj/item/weldingtool/experimental/hybrid/alien,/obj/item/weldingtool/experimental/hybrid/alien,/obj/item/tool/wirecutters/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"fT" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"fY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"ga" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"gb" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"gd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"gf" = (/obj/machinery/light/small{dir = 4},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"gi" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"gj" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/secoffice) +"gk" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"gl" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"gm" = (/obj/structure/bed/chair/bay/chair/padded{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"go" = (/obj/structure/bed,/obj/machinery/light/small{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"gp" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"gq" = (/obj/random/crate,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"gr" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"gs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"gt" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/viro) +"gw" = (/obj/structure/table/standard,/obj/item/storage/pill_bottle/adranol{pixel_x = -6; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"gy" = (/obj/item/prop/alien/prototype,/obj/item/ammo_casing/microbattery/medical/normalsize,/obj/item/ammo_casing/microbattery/medical/normalsize,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"gz" = (/obj/machinery/computer/scan_consolenew{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"gA" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"gB" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"gC" = (/obj/structure/curtain/medical,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"gD" = (/obj/structure/closet,/obj/random/maintenance/misc,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"gF" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"gG" = (/obj/structure/sink{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"gH" = (/obj/structure/bed/chair/bay/chair/padded{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"gI" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"gK" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"gL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"gN" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"gO" = (/obj/machinery/light/small,/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/antroom) +"gP" = (/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"gR" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"gS" = (/obj/structure/bed/pillowpile,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"gU" = (/mob/living/simple_mob/slime/xenobio/ruby,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"gV" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/closet/secure_closet/chemical,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"gX" = (/obj/structure/bed/chair/bay/chair/padded,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"gY" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"gZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"ha" = (/obj/structure/bed/chair/bay/chair/padded,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"hc" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"hd" = (/turf/simulated/floor/water/indoors,/area/surface/tyr/eclipse_stronghold/poolroom) +"he" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"hf" = (/obj/structure/window/plastitanium{dir = 8},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"hg" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"hh" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"hj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"hl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"hm" = (/obj/machinery/door/airlock/alien/locked,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"hn" = (/obj/effect/zone_divider,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"hq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"hr" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"ht" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"hu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"hv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"hx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"hy" = (/obj/machinery/power/rad_collector,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"hA" = (/obj/structure/bed/chair/sofa/black,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"hB" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"hF" = (/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"hG" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"hH" = (/obj/item/prop/alien/prototype,/obj/item/melee/energy/sword/dualsaber,/obj/item/melee/energy/sword/dualsaber,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"hM" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"hO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"hQ" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"hR" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/random/firstaid,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"hS" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"hT" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/engineering,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"hV" = (/obj/structure/closet,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"hW" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"hX" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/docks) +"hY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"ib" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ic" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"ig" = (/obj/machinery/vending/altevian,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"ii" = (/obj/item/archaeological_find,/obj/item/archaeological_find,/obj/random/research_sample_type1,/obj/random/research_sample_type2,/obj/random/research_sample_type3,/obj/structure/closet,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"ik" = (/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"il" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"im" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"io" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ip" = (/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"iq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"ir" = (/turf/simulated/wall/r_lead,/area/surface/tyr/northern_wilderness) +"iu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"iv" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"iw" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"ix" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom) +"iy" = (/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"iz" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"iA" = (/obj/structure/fuel_port/heavy{dir = 41; pixel_y = 24},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"iB" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"iC" = (/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold) +"iD" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"iF" = (/obj/item/pickaxe/diamonddrill/alien,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"iG" = (/mob/living/simple_mob/slime,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"iI" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"iJ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"iK" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"iL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"iN" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"iP" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"iQ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"iR" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/filestorage) +"iS" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"iT" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"iU" = (/obj/machinery/vending/snack,/obj/machinery/light/small,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) "iV" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/gate,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"iW" = (/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iX" = (/obj/structure/mob_spawner/beetle_hill,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"iY" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jc" = (/obj/effect/zone_divider,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jd" = (/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/structure/closet/crate,/obj/item/storage/fancy/blackcandle_box,/obj/item/storage/fancy/blackcandle_box,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"je" = (/obj/item/clothing/head/wizard,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"jg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"jh" = (/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"jk" = (/obj/machinery/power/port_gen/pacman/mrs,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"jl" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jm" = (/obj/structure/closet/crate,/obj/random/material,/obj/machinery/light/small,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"jn" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"js" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jt" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"jw" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"jx" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"jB" = (/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jC" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/south_caverns) +"iW" = (/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"iY" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"iZ" = (/obj/structure/bed/pillowpile/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"jb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"jc" = (/obj/effect/zone_divider,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"jd" = (/obj/structure/table/wooden_reinforced,/obj/item/flame/candle/everburn,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"je" = (/obj/item/clothing/head/wizard,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"jg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"jh" = (/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"ji" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"jj" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"jk" = (/obj/machinery/power/port_gen/pacman/mrs,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"jl" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"jm" = (/obj/structure/closet/crate,/obj/random/material,/obj/machinery/light/small,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"jn" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"jo" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"js" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"jt" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"jw" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"jx" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"jy" = (/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/structure/table/rack/shelf,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"jz" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"jC" = (/obj/item/gun/energy/curse_lasershooter,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) "jD" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness) -"jG" = (/obj/structure/flora/tyr/flowers,/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"jL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"jN" = (/obj/structure/cable/orange{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"jP" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"jS" = (/obj/structure/reagent_dispensers/watertank/high,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"jV" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"jW" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jZ" = (/obj/structure/closet,/obj/item/clothing/under/swimsuit/black,/obj/item/clothing/under/swimsuit/blue,/obj/item/clothing/under/swimsuit/cowbikini,/obj/item/clothing/under/swimsuit/earth,/obj/item/clothing/under/swimsuit/fluff/engineering,/obj/item/clothing/under/swimsuit/fluff/medical,/obj/item/clothing/under/swimsuit/fluff/science,/obj/item/clothing/under/swimsuit/fluff/security,/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/sectore) -"ka" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"kd" = (/obj/structure/table/fancyblack,/obj/random/cash/huge,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"ke" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"kf" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"kg" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/sectore) -"kh" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"kj" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"kr" = (/obj/structure/table/bench/padded,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"ku" = (/mob/living/simple_mob/slime/xenobio/oil,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ky" = (/obj/structure/table/standard,/obj/item/material/knife/machete/hatchet,/obj/item/material/knife/machete/hatchet,/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/diagonal,/obj/item/seeds/random,/obj/item/seeds/random,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"kE" = (/obj/structure/toilet/prison{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"kI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"kJ" = (/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"kK" = (/obj/machinery/suit_cycler/refit_only,/turf/simulated/floor,/area/surface/tyr/huntery) -"kN" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"kQ" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"kW" = (/obj/machinery/vending/hydroseeds,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"kX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"kZ" = (/obj/machinery/vending/nukie,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) +"jE" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"jF" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"jG" = (/obj/item/gun/energy/curse_blaster,/obj/item/tool/screwdriver/hybrid/alien,/obj/item/tool/screwdriver/hybrid/alien,/obj/item/tool/wirecutters/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"jK" = (/obj/structure/toilet/prison{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"jL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"jM" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"jN" = (/obj/structure/cable/orange{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"jO" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"jR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"jS" = (/obj/structure/reagent_dispensers/watertank/high,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"jV" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"jX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"jY" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"jZ" = (/obj/structure/closet,/obj/item/clothing/under/swimsuit/black,/obj/item/clothing/under/swimsuit/blue,/obj/item/clothing/under/swimsuit/cowbikini,/obj/item/clothing/under/swimsuit/earth,/obj/item/clothing/under/swimsuit/fluff/engineering,/obj/item/clothing/under/swimsuit/fluff/medical,/obj/item/clothing/under/swimsuit/fluff/science,/obj/item/clothing/under/swimsuit/fluff/security,/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"ka" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"kc" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"kd" = (/obj/structure/table/fancyblack,/obj/random/cash/huge,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"ke" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"kf" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"kg" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"kh" = (/obj/item/tool/crowbar/hybrid/alien,/obj/item/tool/crowbar/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"kj" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"kn" = (/obj/structure/curtain,/mob/living/simple_mob/humanoid/eclipse/head/medical,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"ko" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"kq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"kr" = (/obj/structure/table/bench/padded,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"ks" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"ku" = (/mob/living/simple_mob/slime/xenobio/oil,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"kx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"ky" = (/obj/structure/table/standard,/obj/item/material/knife/machete/hatchet,/obj/item/material/knife/machete/hatchet,/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/diagonal,/obj/item/seeds/random,/obj/item/seeds/random,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"kA" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"kB" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"kC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"kF" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"kG" = (/obj/effect/zone_divider,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"kI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"kJ" = (/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"kN" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"kO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"kP" = (/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"kQ" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"kR" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/engihead) +"kU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"kW" = (/obj/machinery/vending/hydroseeds,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"kX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"kY" = (/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"kZ" = (/obj/machinery/vending/nukie,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"la" = (/obj/machinery/computer/cloning{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"lb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"lc" = (/obj/effect/floor_decal/corner/lime/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"ld" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"le" = (/obj/machinery/light/small{dir = 4},/obj/structure/bed,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) "lf" = (/turf/simulated/wall/solidrock,/area/surface/tyr/south_caverns) -"li" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"ll" = (/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/finale) -"lm" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"lp" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"lr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"lt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"lv" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"lz" = (/obj/machinery/light/small{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"lC" = (/obj/structure/toilet/prison{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"lD" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/cliffchamber) -"lG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"lK" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzletwo"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlea) -"lL" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"lR" = (/obj/structure/bed/double,/obj/item/bedsheet/purpledouble,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"lX" = (/obj/fire,/obj/item/clothing/head/helmet/space/void/merc/fire,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"mc" = (/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"me" = (/mob/living/simple_mob/mechanical/mecha/eclipse/mining_guard,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/sectore) -"mf" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"mh" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mn" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"mo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"mr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mt" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mu" = (/turf/simulated/floor/outdoors/ice/dark,/area/surface/tyr/precursorruins/southeast) +"lh" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"li" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"lm" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"ln" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"lp" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"lr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"lt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"lu" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"lv" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"ly" = (/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"lz" = (/obj/machinery/light/small{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"lC" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"lD" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness) +"lE" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"lF" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"lG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"lH" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"lI" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"lK" = (/obj/structure/inflatable/door,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"lL" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"lN" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/engihead) +"lO" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"lP" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"lQ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"lR" = (/obj/structure/bed/double,/obj/item/bedsheet/purpledouble,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"lS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"lU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"lW" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"lX" = (/obj/fire,/obj/item/clothing/head/helmet/space/void/merc/fire,/obj/item/bone/arm,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"lZ" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"ma" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"mb" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"mc" = (/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"md" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"me" = (/mob/living/simple_mob/mechanical/mecha/eclipse/mining_guard,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/docks) +"mf" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"mg" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"mh" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"mk" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"ml" = (/obj/structure/table/steel,/obj/item/handcuffs/legcuffs,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"mn" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/item/storage/toolbox/hydro,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"mo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"mr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"ms" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"mt" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) "mv" = (/obj/effect/zone_divider,/turf/simulated/mineral/light/tyr,/area/surface/tyr/south_caverns) -"my" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mD" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"mE" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mF" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mH" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mI" = (/obj/structure/bed,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mM" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"mO" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs/legcuffs,/obj/random/mega_nukies,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mR" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs/legcuffs/bola,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mY" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"mZ" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nb" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nc" = (/obj/machinery/porta_turret/alien{can_salvage = 0; installation = /obj/item/gun/energy/curse_blaster},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"ne" = (/obj/effect/floor_decal/corner/lime/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"nf" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"ng" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/sectore) -"ni" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nj" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"nl" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"nn" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"np" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"nu" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"nv" = (/obj/structure/prop/alien/computer/camera,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"nx" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/firstaid,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs/legcuffs,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nz" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"nC" = (/obj/machinery/light/small{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nG" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nK" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"nM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"nP" = (/obj/machinery/door/airlock/hatch,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"nU" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/northwest) -"ob" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"oc" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"og" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"oh" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/grenade/less_lethal,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/light/small{dir = 8},/obj/random/mega_nukies,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"oi" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"on" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"or" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"ou" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"ov" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"oy" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"oz" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/light/small{dir = 4},/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"oA" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"oD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"oE" = (/obj/structure/mob_spawner/ant_hill,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"oI" = (/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckA"; opacity = 0},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"oQ" = (/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"oR" = (/obj/structure/table/rack/shelf,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlea) -"oT" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"oU" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"oV" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"oX" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"oY" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"oZ" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"pd" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckA"},/obj/effect/zone_divider,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"pe" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"pg" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"ph" = (/obj/effect/floor_decal/corner/orange/border{dir = 10},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"pm" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"pn" = (/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"pp" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"ps" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"pw" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"pz" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"pA" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"pE" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"pK" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"pO" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"pR" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"pU" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"pV" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins) -"pY" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"qb" = (/obj/structure/table/marble,/obj/item/slime_scanner,/obj/item/slime_scanner,/obj/item/melee/baton/slime,/obj/item/melee/baton/slime,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) +"my" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"mz" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"mB" = (/obj/structure/bed/pillowpile,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"mD" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"mE" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/poolroom) +"mF" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"mG" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"mH" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"mI" = (/obj/structure/morgue{dir = 8},/obj/item/bone,/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"mJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"mK" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"mM" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"mN" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"mO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/gun/energy/sizegun,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"mR" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"mU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"mX" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"mY" = (/obj/item/ammo_casing/microbattery/medical/haste,/obj/item/ammo_casing/microbattery/medical/haste,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"mZ" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"na" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"nb" = (/obj/machinery/chemical_dispenser/xenoflora/full,/obj/structure/table/standard,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"nc" = (/obj/item/ammo_casing/microbattery/medical/grow,/obj/item/ammo_casing/microbattery/medical/grow,/obj/item/ammo_casing/microbattery/medical/shrink,/obj/item/ammo_casing/microbattery/medical/shrink,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"ne" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"nf" = (/obj/item/melee/energy/sword/dualsaber,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"ng" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom) +"ni" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"nj" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"nl" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"nn" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"np" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/town; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_e"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) +"nu" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"nv" = (/obj/effect/zone_divider,/turf/simulated/wall/shull,/area/surface/tyr/northern_wilderness) +"nx" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"ny" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/distillery) +"nz" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"nC" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/obj/machinery/light/small{dir = 8},/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"nF" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"nG" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"nH" = (/obj/structure/table/standard,/obj/item/storage/fancy/vials,/obj/item/storage/fancy/vials,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"nJ" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"nK" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/structure/fans/hardlight,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"nL" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"nM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"nO" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"nP" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"nQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"nS" = (/obj/machinery/power/tesla_coil,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"nT" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"nW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"nX" = (/obj/machinery/light/small,/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"nY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"ob" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"oc" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"od" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 4},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"oe" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/reinforced{nitrogen = 500; oxygen = 0},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"of" = (/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"og" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"oh" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/biogenerator,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"oi" = (/obj/structure/morgue,/obj/item/bone,/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"oj" = (/obj/structure/window/plastitanium,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"ol" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"on" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/rig_module/mounted/sizegun,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"oo" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"oq" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"or" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"ou" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"ov" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"ow" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"oy" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"oz" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/item/bedsheet/hopdouble,/obj/structure/bed/double,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"oA" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"oC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"oD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"oE" = (/obj/structure/inflatable/door,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness) +"oF" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"oH" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"oI" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/finale) +"oJ" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"oK" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"oM" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/big,/obj/random/contraband/nofail,/obj/random/mega_nukies,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"oN" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"oP" = (/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"oQ" = (/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"oR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"oS" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/sink{pixel_y = 16},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"oT" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"oU" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"oV" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"oW" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/morgue) +"oX" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"oY" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"oZ" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"pb" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"pc" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"pd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"pe" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"pg" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"ph" = (/obj/effect/floor_decal/corner/orange/border{dir = 10},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"pi" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"pk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"pl" = (/obj/effect/zone_divider,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"pm" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"pn" = (/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"pp" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"pr" = (/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"pw" = (/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"pz" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"pA" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"pD" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"pE" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"pG" = (/obj/structure/morgue,/obj/item/bone,/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"pH" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"pI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"pK" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/docks) +"pL" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"pM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"pN" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"pO" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"pQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"pR" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"pS" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"pT" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"pU" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"pV" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/obj/item/gun/energy/mininglaser,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"pW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"pY" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"pZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"qa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"qb" = (/obj/structure/table/marble,/obj/item/slime_scanner,/obj/item/slime_scanner,/obj/item/melee/baton/slime,/obj/item/melee/baton/slime,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) "qd" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/north_caverns) -"qk" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ql" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"qp" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/cliffchamber) -"qv" = (/obj/structure/table/standard,/obj/item/radio,/obj/item/radio,/turf/simulated/floor,/area/surface/tyr/huntery) -"qw" = (/obj/structure/closet,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"qy" = (/obj/structure/table/reinforced,/obj/random/maintenance/morestuff,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"qF" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/cable/orange{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"qG" = (/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) +"qe" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"qf" = (/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"qh" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"qi" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"qk" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"ql" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"qm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"qo" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"qp" = (/obj/machinery/suit_cycler/refit_only,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"qs" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"qw" = (/obj/structure/closet,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"qx" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"qy" = (/obj/structure/table/reinforced,/obj/random/maintenance/morestuff,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"qB" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"qC" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"qF" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/cable/orange{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"qG" = (/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) "qI" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness) -"qJ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"qN" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"qQ" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs,/obj/random/energy/highend,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"qR" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"qT" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"qV" = (/obj/structure/bookcase,/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"qW" = (/obj/structure/table/fancyblack,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"qX" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"qY" = (/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"qZ" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/medical,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"rd" = (/obj/effect/zone_divider,/turf/simulated/wall/r_lead,/area/surface/tyr/huntery) -"re" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"rp" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/town) -"rr" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"rt" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rw" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"rA" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/spotthediffrence) -"rE" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rG" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rH" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rL" = (/obj/structure/bed,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rM" = (/obj/structure/stasis_cage,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"rN" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"rR" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"rU" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/town) -"rV" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rW" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/structure/cable/orange{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"rZ" = (/obj/structure/table/standard,/obj/item/pickaxe/gold,/obj/item/clothing/suit/space/anomaly,/obj/item/clothing/head/helmet/space/anomaly,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"sb" = (/obj/structure/cable/orange{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"sc" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/sectore) -"sh" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"sk" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"qJ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"qL" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"qM" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"qN" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"qQ" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/seed_storage,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"qR" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"qS" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"qT" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"qV" = (/obj/structure/bookcase,/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"qW" = (/obj/structure/table/fancyblack,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"qX" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"qY" = (/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"qZ" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/medical,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"rc" = (/obj/effect/zone_divider,/obj/structure/window/plastitanium,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"rd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"re" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"rf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"rg" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"rh" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"ri" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"rk" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"rl" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"rn" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"ro" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"rp" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/obj/item/gun/energy/mininglaser,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"rq" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/gun/energy/sizegun,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"rr" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"rs" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"rt" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/closet/secure_closet/chemical,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"ru" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"rw" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"rx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"rz" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"rB" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/chemistb) +"rC" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"rD" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"rE" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"rF" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"rG" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"rH" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/random/firstaid,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"rJ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"rK" = (/obj/item/storage/firstaid/surgery,/obj/structure/table/standard,/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"rM" = (/obj/structure/stasis_cage,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"rN" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"rO" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"rP" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"rQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"rR" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"rS" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"rT" = (/obj/effect/floor_decal/corner/lime/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"rV" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"rW" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/structure/cable/orange{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"rX" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"rZ" = (/obj/structure/table/standard,/obj/item/pickaxe/gold,/obj/item/clothing/suit/space/anomaly,/obj/item/clothing/head/helmet/space/anomaly,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"sb" = (/obj/structure/cable/orange{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"sc" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/antroom) +"sd" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"se" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"sg" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"sh" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"sj" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"sk" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"sl" = (/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/structure/table/rack/shelf,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) "so" = (/obj/effect/zone_divider,/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/town) -"sr" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"sC" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"sD" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"sH" = (/obj/structure/cable/orange,/obj/item/stack/material/tritium{amount = 50},/obj/structure/closet,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"sI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"sQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"sT" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"sX" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/farwacubes,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"sZ" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/random/crate,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"ta" = (/obj/machinery/light/small{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"tc" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"th" = (/obj/machinery/power/port_gen/pacman/mrs,/obj/structure/cable/orange,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"tk" = (/obj/random/crate,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"tn" = (/obj/structure/table/reinforced,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"ts" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"tH" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrpuzzlecheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"tI" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"tJ" = (/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlea) -"tL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"tR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"tS" = (/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"tT" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"tW" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/northern_wilderness) -"tX" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/grenade/less_lethal,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"tY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"ub" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"ue" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"uh" = (/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"uk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"un" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"uq" = (/obj/effect/floor_decal/corner/orange/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"us" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"uC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"uD" = (/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/sectore) -"uF" = (/obj/structure/table/gold,/obj/item/prop/alien/prototype,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"uK" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"uL" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"uN" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"uO" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"uS" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"uT" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"uV" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectore) -"uX" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/light/small{dir = 8},/obj/random/mega_nukies,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"va" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/light/small{dir = 4},/obj/random/energy/highend,/obj/random/mega_nukies,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"vb" = (/obj/effect/forcefield/mime,/turf/simulated/floor/lava,/area/surface/tyr/precursorruins/finale) -"vc" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckD"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"vd" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/surface/tyr/eclipse_stronghold/sectore) -"ve" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"vf" = (/obj/item/shovel/spade,/obj/item/shovel/spade,/obj/structure/table/standard,/obj/effect/floor_decal/corner/lime/diagonal,/obj/item/seeds/random,/obj/item/seeds/random,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"vh" = (/obj/effect/floor_decal/corner/blue/diagonal,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"vk" = (/obj/structure/anomaly_container,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"vm" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"vn" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"vq" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"vt" = (/obj/structure/closet,/obj/random/maintenance/morestuff,/obj/random/maintenance/cargo,/obj/random/mainttoyloot/nofail,/obj/random/mega_nukies,/obj/random/plushie,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"vy" = (/obj/structure/curtain/bed,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"vD" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"vH" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/morestuff,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"vJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"vK" = (/obj/structure/inflatable,/turf/simulated/floor,/area/surface/tyr/huntery) -"vL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"vN" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrgroupcheckC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"vP" = (/obj/structure/inflatable/door,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"vQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"vR" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/turf/simulated/floor,/area/surface/tyr/huntery) -"vX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"vZ" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"wd" = (/turf/simulated/floor/lava/harmless,/area/surface/tyr/precursorruins/finale) -"we" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"wg" = (/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"wk" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/cargo,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"wm" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"wq" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"wA" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"wC" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"wG" = (/obj/structure/flora/tyr/flowers,/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"wH" = (/obj/structure/table/gold,/obj/item/gun/energy/curse_tyrshotgun,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"wM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"wO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/huntery) -"wS" = (/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"wU" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"wW" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) +"sp" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"sq" = (/obj/effect/floor_decal/corner/orange/border,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"sr" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"ss" = (/obj/structure/table/standard,/obj/item/toy/plushie,/obj/random/firstaid,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"sw" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"sB" = (/obj/random/vendorfood,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"sC" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"sD" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/implanter/sizecontrol,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"sE" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"sH" = (/obj/structure/cable/orange,/obj/item/stack/material/tritium{amount = 50},/obj/structure/closet,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"sI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"sK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"sM" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"sN" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"sP" = (/obj/machinery/vending/boozeomat,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"sQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"sR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"sS" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"sT" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"sU" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"sV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"sX" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/farwacubes,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"sZ" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/random/crate,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"ta" = (/obj/structure/table/steel,/obj/item/handcuffs/legcuffs/bola,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"tc" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"te" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"th" = (/obj/machinery/power/port_gen/pacman/mrs,/obj/structure/cable/orange,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"tk" = (/obj/random/crate,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"tm" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"tn" = (/obj/structure/table/reinforced,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"tp" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/purple/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"tq" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"tr" = (/obj/machinery/power/tesla_coil/splitter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"ts" = (/obj/machinery/botany/editor,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"tu" = (/obj/effect/zone_divider,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"tw" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"ty" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"tz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"tB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"tC" = (/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"tH" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness) +"tI" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"tJ" = (/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"tL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"tM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"tN" = (/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"tO" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"tQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"tR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"tS" = (/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"tT" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/docks) +"tU" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"tW" = (/obj/structure/table/standard,/obj/item/radio,/obj/item/radio,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"tX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"tY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"ub" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"uc" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ue" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"uf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"ug" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/curtain/medical,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"uh" = (/turf/simulated/floor/water/indoors,/area/surface/tyr/precursorruins/finale) +"uk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"um" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"un" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"uo" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"uq" = (/obj/effect/floor_decal/corner/orange/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"ur" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"us" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"ut" = (/obj/effect/floor_decal/corner/purple/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"ux" = (/obj/structure/window/plastitanium{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"uy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"uz" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/meatstorage) +"uB" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"uC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"uD" = (/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom) +"uF" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"uH" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/antroom) +"uK" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"uL" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"uM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"uN" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"uO" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/bluespace,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"uQ" = (/obj/structure/window/plastitanium,/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"uR" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"uS" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/machinery/chemical_dispenser/biochemistry/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"uT" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"uV" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks) +"uW" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"uX" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"uY" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"uZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"va" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"vb" = (/obj/machinery/cryopod/robot/door/gateway/quiet,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"vc" = (/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"vd" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/surface/tyr/eclipse_stronghold/docks) +"ve" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"vf" = (/obj/item/shovel/spade,/obj/item/shovel/spade,/obj/structure/table/standard,/obj/effect/floor_decal/corner/lime/diagonal,/obj/item/seeds/random,/obj/item/seeds/random,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"vh" = (/obj/effect/floor_decal/corner/blue/diagonal,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"vi" = (/obj/structure/window/plastitanium{dir = 8},/obj/structure/curtain/medical,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"vj" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"vk" = (/obj/structure/anomaly_container,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"vm" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"vn" = (/mob/living/simple_mob/mechanical/mecha/eclipse/antipersonal_unit,/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold) +"vp" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"vq" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"vt" = (/obj/structure/closet,/obj/random/maintenance/morestuff,/obj/random/maintenance/cargo,/obj/random/mainttoyloot/nofail,/obj/random/mega_nukies,/obj/random/plushie,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"vx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"vy" = (/obj/structure/curtain/bed,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"vB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"vD" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"vE" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"vG" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"vH" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/morestuff,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"vI" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"vJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"vK" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"vL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"vM" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"vN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"vO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"vQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"vR" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"vT" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"vX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"vZ" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"wd" = (/obj/machinery/crystal/ice,/turf/simulated/floor/outdoors/ice/dark/turfpack/station,/area/surface/tyr/precursorruins/finale) +"we" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"wg" = (/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"wh" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"wj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"wk" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/cargo,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"wm" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"wo" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"wq" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"ws" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"ww" = (/obj/machinery/door/airlock/silver,/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"wy" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"wA" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"wC" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"wD" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"wF" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"wH" = (/obj/machinery/door/airlock/hatch,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"wK" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"wM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"wN" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"wO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"wP" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"wS" = (/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"wU" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"wW" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"wX" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) "wY" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"xb" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrpuzzlecheckA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) +"wZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"xb" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"xd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"xf" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"xh" = (/obj/effect/floor_decal/corner/orange/bordercorner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) "xi" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"xk" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xl" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"xm" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/southeast) -"xq" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"xr" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"xs" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xu" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckB"},/turf/simulated/floor/lava/harmless,/area/surface/tyr/precursorruins/finale) -"xv" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/farwacubes,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"xx" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"xD" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xE" = (/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"xJ" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xP" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xQ" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/sectore) -"xR" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xU" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"xX" = (/obj/structure/flora/tyr/stonetree,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"xZ" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"yb" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"yc" = (/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"yf" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"yi" = (/obj/random/crate,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"yl" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ym" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"yo" = (/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor,/area/surface/tyr/huntery) -"yq" = (/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckB"; opacity = 0},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"yr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"ys" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"yu" = (/obj/structure/table/gold,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"yw" = (/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"yx" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrgroupcheckA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"yy" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"yz" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"yF" = (/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"yG" = (/obj/fire,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"yI" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"yK" = (/turf/simulated/floor,/area/surface/tyr/huntery) -"yM" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalE"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"yN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"yO" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"yS" = (/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"yT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"yU" = (/obj/structure/table/steel,/obj/machinery/recharger,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"ze" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"xk" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"xl" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"xm" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"xn" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"xq" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"xr" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold) +"xs" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"xu" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"xv" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/farwacubes,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"xx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"xz" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"xA" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"xB" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"xD" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"xH" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"xI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"xJ" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"xL" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"xM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"xN" = (/obj/effect/floor_decal/corner/purple/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"xP" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"xQ" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/antroom) +"xR" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"xT" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"xU" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"xX" = (/turf/simulated/floor/outdoors/ice/dark/turfpack/station,/area/surface/tyr/precursorruins/finale) +"xY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"xZ" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"yb" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"yc" = (/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"yd" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"ye" = (/obj/fire,/obj/item/bone/leg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"yf" = (/obj/machinery/atmospherics/unary/heater,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/distillery) +"yg" = (/obj/machinery/optable,/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"yh" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"yi" = (/obj/random/crate,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"yk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"yl" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ym" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"yn" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"yo" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"yp" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"yq" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness) +"yr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"ys" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"yt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"yu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"yw" = (/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"yx" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"yy" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"yz" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"yA" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"yB" = (/obj/fire,/obj/item/bone/arm,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"yF" = (/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"yG" = (/obj/fire,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"yI" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"yJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"yL" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"yM" = (/obj/structure/table/standard,/obj/item/stack/medical/splint,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"yN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"yO" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"yP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"yQ" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"yS" = (/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"yT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"yU" = (/obj/structure/table/steel,/obj/machinery/recharger,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"yV" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"yY" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/alienbotany) +"za" = (/obj/fire,/obj/item/bone/ribs,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"zc" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"zd" = (/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold) +"ze" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"zf" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/recoveryB) "zh" = (/obj/effect/zone_divider,/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/northern_wilderness) -"zi" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"zj" = (/obj/machinery/vending/foodfish,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"zl" = (/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"zm" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/sectore) -"zq" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"zs" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"zv" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalD"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"zy" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/westright{name = "Containment Pen"; req_one_access = list(43,1)},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"zA" = (/obj/structure/table/gold,/obj/item/gun/energy/energyballchain,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"zC" = (/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"zD" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"zI" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"zJ" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"zN" = (/obj/fire,/obj/item/clothing/suit/space/void/merc/fire,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"zR" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) +"zi" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"zj" = (/obj/machinery/vending/foodfish,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"zl" = (/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"zm" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"zn" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"zp" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista) +"zq" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"zs" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"zt" = (/obj/structure/window/plastitanium{dir = 8},/obj/structure/table/standard,/obj/item/storage/box/monkeycubes{pixel_x = 6; pixel_y = 6},/obj/item/storage/box/monkeycubes{pixel_x = -7; pixel_y = -3},/obj/item/storage/box/monkeycubes,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"zv" = (/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness) +"zw" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"zy" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/westright{name = "Containment Pen"; req_one_access = list(43,1)},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"zA" = (/turf/simulated/wall/wood,/area/surface/tyr/northern_wilderness) +"zC" = (/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"zD" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"zF" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"zI" = (/obj/machinery/portable_atmospherics/powered/reagent_distillery/industrial,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/distillery) +"zJ" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"zK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"zM" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/generatorC) +"zN" = (/obj/fire,/obj/item/clothing/suit/space/void/merc/fire,/obj/item/instrument/trombone,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"zR" = (/obj/structure/table/standard,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) "zS" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"zW" = (/obj/structure/table/wooden_reinforced,/obj/item/storage/bible,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"Ab" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ac" = (/obj/item/gun,/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs/legcuffs/bola,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ae" = (/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ao" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"Ar" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Au" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"AF" = (/obj/structure/bookcase,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"AH" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material/precious,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"AJ" = (/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"AK" = (/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"AL" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes/neaeracubes,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"AS" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"AT" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"AU" = (/obj/structure/table/fancyblack,/obj/random/cash/big,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"AV" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"AW" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckA"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckB"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckC"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckD"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"AY" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ba" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Bd" = (/obj/random/obstruction,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Bg" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Bj" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Bm" = (/obj/machinery/vending/sovietvend,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Bt" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Bv" = (/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"BB" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"BC" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"BD" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"BE" = (/obj/structure/table/gold,/obj/item/gun/energy/curse_lasershooter,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"BI" = (/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"BO" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/huntery) -"BR" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material/precious,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"BS" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/eelmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/dragonmeat,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"BT" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"BY" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/structure/fans/hardlight,/turf/simulated/floor,/area/surface/tyr/huntery) -"BZ" = (/obj/structure/sink{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"Ca" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/sectore) -"Ce" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Ch" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/huntery) -"Cj" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"Ck" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/sectore) -"Cl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/huntery) +"zU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"zV" = (/obj/structure/curtain/medical,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Aa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"Ab" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ac" = (/obj/machinery/atmospherics/unary/freezer,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/distillery) +"Ae" = (/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Ag" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"Ai" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Aj" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Ak" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"An" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"Ao" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Ar" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"As" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"At" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Au" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Aw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Ay" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"Az" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"AA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"AB" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"AC" = (/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"AD" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/engihead) +"AF" = (/obj/structure/bookcase,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"AH" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material/precious,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"AJ" = (/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"AK" = (/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"AL" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes/neaeracubes,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"AM" = (/obj/structure/bed/double,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"AN" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"AQ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"AS" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"AT" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"AU" = (/obj/structure/table/fancyblack,/obj/random/cash/big,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"AW" = (/obj/effect/zone_divider,/obj/random/tyroutcrop,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"AX" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"AY" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ba" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Bb" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Bc" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/cafe) +"Bd" = (/obj/random/obstruction,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Bf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Bg" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Bh" = (/obj/structure/window/plastitanium{dir = 1},/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Bi" = (/obj/effect/zone_divider,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Bj" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Bk" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Bm" = (/obj/machinery/vending/sovietvend,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Bp" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"Br" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Bt" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"Bu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Bv" = (/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"Bw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Bx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"By" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Bz" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"BB" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"BC" = (/obj/effect/zone_divider,/obj/structure/flora/tyr/flowers,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"BD" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"BE" = (/obj/structure/mob_spawner/beetle_hill,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"BF" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/furnace) +"BG" = (/obj/structure/table/standard,/obj/random/meat,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"BI" = (/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"BJ" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"BN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"BO" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/animal/tyr/mineral_ants/builder,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"BR" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material/precious,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"BS" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/eelmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/dragonmeat,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"BT" = (/obj/effect/map_effect/interval/effect_emitter/sparks,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"BU" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"BV" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"BX" = (/obj/machinery/power/tesla_coil/amplifier,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"BY" = (/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"BZ" = (/obj/structure/sink{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Ca" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom) +"Cb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/cafe) +"Cd" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"Ce" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Cg" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Ch" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"Ci" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Cj" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Ck" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold) +"Cl" = (/obj/structure/flora/tyr/lilly,/obj/structure/flora/tyr/flowers,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"Cn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Cp" = (/obj/effect/zone_divider,/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"Cq" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) "Cr" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"Cs" = (/obj/random/ammo_all,/obj/random/ammo_all,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/item/handcuffs/legcuffs,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Cu" = (/obj/structure/table/reinforced,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Cw" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/sectore) -"CB" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"CD" = (/obj/structure/grille,/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"CF" = (/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"CH" = (/obj/structure/grille,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"CI" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/clean,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"CK" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"CU" = (/obj/random/outcrop,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"CV" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"Cs" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Ct" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Cu" = (/obj/structure/table/reinforced,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"Cv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"Cw" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold) +"CB" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"CD" = (/obj/structure/grille,/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"CF" = (/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"CG" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold) +"CH" = (/obj/structure/grille,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"CI" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/clean,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"CK" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"CM" = (/obj/structure/table/standard,/obj/item/ammo_magazine/cell_mag/medical,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"CN" = (/obj/structure/bed/pillowpile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"CR" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"CT" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"CU" = (/obj/random/tyroutcrop,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"CV" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) "CW" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"CY" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Da" = (/obj/item/clothing/suit/wizrobe/fake,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) +"CX" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"CY" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Da" = (/obj/item/clothing/suit/wizrobe/fake,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) "Db" = (/obj/effect/overmap/visitable/planet/tyr,/turf/simulated/wall/solidrock,/area/surface/tyr/south_caverns) -"Df" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Dg" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Dh" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Dk" = (/obj/structure/flora/tyr/flowers,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Dl" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/effect/zone_divider,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Dm" = (/obj/structure/bed/chair/bar_stool,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Dn" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"Dp" = (/obj/structure/filingcabinet,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"Dq" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/southern_wilderness) -"DB" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/animal/tyr/groundpitcher,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"DC" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"DH" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"DI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"DM" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"DO" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/southern_wilderness) -"DP" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"DW" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"DX" = (/obj/machinery/photocopier,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"DY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Ec" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ej" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/misc,/obj/random/maintenance/security,/obj/random/plushie,/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"El" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Em" = (/obj/machinery/suspension_gen,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"Eo" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzled) -"Et" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Ex" = (/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"EA" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrgroupcheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"EP" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"EQ" = (/obj/structure/closet,/obj/random/maintenance/morestuff,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ER" = (/obj/machinery/door/airlock/silver,/obj/effect/floor_decal/corner_steel_grid/diagonal,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"EV" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/southern_wilderness) -"EY" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"EZ" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Fa" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"Fb" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/clean,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Fh" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Fl" = (/obj/structure/table/steel,/obj/machinery/door/window{dir = 2},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Fm" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Fp" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Fr" = (/obj/structure/table/reinforced,/obj/item/flashlight/lamp/green,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"FB" = (/obj/structure/table/reinforced,/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp/safety,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"FF" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"FG" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/surface/tyr/huntery) -"FH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"FL" = (/obj/structure/curtain/bed,/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"FM" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/medical,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"FN" = (/obj/item/shield_projector/rectangle/automatic/tyrvault,/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"FP" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzleone"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"FT" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"Dd" = (/obj/structure/table/steel,/obj/item/grenade/flashbang,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Df" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Dg" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Dh" = (/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"Di" = (/obj/structure/window/plastitanium{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Dk" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/animal/tyr/rainbow_fly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"Dl" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/effect/zone_divider,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Dm" = (/obj/structure/bed/chair/bar_stool,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Dn" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"Do" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"Dp" = (/obj/structure/filingcabinet,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"Dq" = (/mob/living/simple_mob/animal/tyr/rainbow_fly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"Dr" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"Ds" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Du" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Dv" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Dx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Dz" = (/obj/structure/bed/padded,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics) +"DB" = (/mob/living/simple_mob/animal/tyr/mineral_ants/painite,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"DC" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"DG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"DH" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"DI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"DL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"DM" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"DN" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/secoffice) +"DO" = (/mob/living/simple_mob/vore/bigdragon,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"DP" = (/obj/effect/zone_divider,/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"DQ" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/miscstorage) +"DU" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"DW" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"DX" = (/obj/machinery/photocopier,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"DY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"DZ" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/viro) +"Ea" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Ec" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ed" = (/obj/structure/grille,/obj/structure/curtain/black,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Ee" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Ef" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Eg" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/engihead) +"Eh" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/huge,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Ei" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"Ej" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/misc,/obj/random/maintenance/security,/obj/random/plushie,/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"El" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"Em" = (/obj/machinery/suspension_gen,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"En" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"Eo" = (/obj/machinery/crystal/ice,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Eq" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/generatorA) +"Er" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Et" = (/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Ev" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"Ew" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"Ex" = (/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"Ey" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/xenobio/monkey_gun,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"Ez" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"EA" = (/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzletwo"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"EB" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"EC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"EG" = (/obj/structure/bed/pillowpile/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"EI" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"EN" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"EO" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"EP" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"EQ" = (/obj/structure/closet,/obj/random/maintenance/morestuff,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"ER" = (/obj/machinery/door/airlock/silver,/obj/effect/floor_decal/corner_steel_grid/diagonal,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"ES" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"EV" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlefive"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"EW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/structure/curtain/black,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"EX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"EY" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"EZ" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Fa" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"Fb" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/clean,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Fc" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Fd" = (/obj/structure/table/steel,/obj/item/flash,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Fg" = (/obj/structure/window/plastitanium{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Fh" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"Fi" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"Fj" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"Fl" = (/obj/structure/table/steel,/obj/machinery/door/window{dir = 2},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"Fm" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Fn" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Fp" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Fr" = (/obj/structure/table/reinforced,/obj/item/flashlight/lamp/green,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"Fs" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Ft" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Fw" = (/obj/structure/sink{pixel_y = 16},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/engihead) +"Fy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"FB" = (/obj/structure/table/reinforced,/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp/safety,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"FC" = (/obj/machinery/dna_scannernew,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"FD" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"FE" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"FF" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"FH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"FK" = (/obj/structure/table/standard,/obj/item/storage/toolbox/lunchbox,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"FL" = (/obj/structure/curtain/bed,/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"FM" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/medical,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"FN" = (/mob/living/simple_mob/animal/tyr/mineral_ants/builder,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"FP" = (/obj/structure/flora/pottedplant/crystal,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"FQ" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"FT" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) "FV" = (/turf/simulated/floor/lava/harmless,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"FW" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Gc" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/random/crate,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"Ge" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Gj" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Gk" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Gl" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"Gm" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"Gv" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/town) -"Gy" = (/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"GJ" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"GL" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/town) -"GR" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"GS" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"GW" = (/obj/structure/prop/alien/power,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"GX" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"GZ" = (/obj/structure/table/reinforced,/obj/item/mecha_parts/mecha_equipment/weapon/honker,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Ha" = (/obj/machinery/chemical_dispenser/bar_alc/full,/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) +"FW" = (/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"FY" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Gc" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/random/crate,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Ge" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Gf" = (/obj/structure/bed/chair/backed_grey,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Gg" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4},/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 0; phoron = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Gh" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/firstaid,/obj/random/cash,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Gj" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"Gk" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Gl" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"Gm" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"Go" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Gq" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Gt" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Gv" = (/obj/effect/forcefield/mime,/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/finale) +"Gx" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Gy" = (/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Gz" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"GB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"GF" = (/obj/effect/floor_decal/corner/grey{dir = 1},/obj/effect/floor_decal/corner/black,/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"GH" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/secoffice) +"GI" = (/obj/structure/bed/pillowpile/yellow,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"GJ" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"GL" = (/obj/structure/flora/pottedplant/aquatic,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"GM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"GQ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"GR" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"GS" = (/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 0; phoron = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"GU" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"GW" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle/tyrdoor/finale,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"GX" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/poolroom) +"GY" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"GZ" = (/obj/structure/table/reinforced,/obj/item/mecha_parts/mecha_equipment/weapon/honker,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Ha" = (/obj/machinery/chemical_dispenser/bar_alc/full,/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"Hd" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) "Hf" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"Hh" = (/obj/structure/table/standard,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/spotthediffrence) -"Hk" = (/obj/machinery/vending/foodstuffing,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Hn" = (/obj/structure/bed/double,/obj/machinery/light/small,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Hq" = (/obj/structure/closet,/obj/random/maintenance/medical,/obj/random/mainttoyloot/nofail,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Hu" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzlec) -"HC" = (/obj/machinery/vending/bepis,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"HD" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"HF" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"HI" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"HJ" = (/obj/structure/table/reinforced,/obj/random/mainttoyloot/nofail,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"HK" = (/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzletwo"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/cliffchamber) -"HP" = (/obj/effect/zone_divider,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"HR" = (/obj/effect/floor_decal/corner/yellow/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"HT" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"HW" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"Ih" = (/obj/structure/bed/double,/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Ii" = (/turf/simulated/wall/wood,/area/surface/tyr/town) -"Ij" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Ik" = (/obj/structure/prop/alien/computer{dir = 4},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"Im" = (/obj/structure/closet,/obj/item/pickaxe/excavationdrill,/obj/item/xenoarch_multi_tool,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"In" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"Iq" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Iu" = (/obj/structure/table/standard,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"IA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"IF" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"IH" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/misc,/obj/random/mainttoyloot/nofail,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"II" = (/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"IK" = (/obj/structure/inflatable/door,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot) -"IL" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"IQ" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"IT" = (/obj/random/mob/fish,/turf/simulated/floor/water/indoors,/area/surface/tyr/eclipse_stronghold/sectore) -"IY" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/alien,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"Jd" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Je" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Jh" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ji" = (/obj/effect/floor_decal/corner/orange/border,/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Jr" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"Ju" = (/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"Jx" = (/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/sectore) -"JE" = (/obj/structure/closet/crate,/obj/random/material,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"JH" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"JJ" = (/obj/effect/forcefield/mime,/turf/simulated/shuttle/floor/alienplating/blue,/area/surface/tyr/precursorruins/northwest) -"JM" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"JO" = (/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"JP" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes/farwacubes,/obj/item/storage/box/monkeycubes/sarucubes,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"JR" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrgroupcheckD"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"JS" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"JZ" = (/obj/structure/table/fancyblack,/obj/structure/stripper_pole,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Kk" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ko" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Kq" = (/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Kv" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"KH" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"KI" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"KM" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"KO" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/spotthediffrence) -"KS" = (/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"KU" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"KV" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"KW" = (/obj/structure/bed/double,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"KX" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"KY" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"Lc" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/turf/simulated/floor,/area/surface/tyr/huntery) -"Lj" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) +"Hg" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"Hj" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Hk" = (/obj/machinery/vending/foodstuffing,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Hl" = (/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Hn" = (/obj/structure/bed/double,/obj/machinery/light/small,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Ho" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"Hq" = (/obj/structure/closet,/obj/random/maintenance/medical,/obj/random/mainttoyloot/nofail,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Hr" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"Hu" = (/turf/simulated/floor/lava,/area/surface/tyr/precursorruins/finale) +"Hv" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"Hw" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Hx" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Hy" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"Hz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"HC" = (/obj/machinery/vending/bepis,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"HD" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"HE" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"HF" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"HG" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"HI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"HJ" = (/obj/structure/table/reinforced,/obj/random/mainttoyloot/nofail,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"HK" = (/turf/simulated/floor/lava/harmless,/area/surface/tyr/precursorruins/finale) +"HL" = (/obj/structure/bed/chair/backed_grey{dir = 1},/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"HO" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"HP" = (/obj/effect/zone_divider,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"HQ" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"HR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"HT" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"HW" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"HY" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/bathroom) +"HZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Ib" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Ic" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"Ie" = (/obj/item/storage/firstaid/surgery,/obj/structure/table/standard,/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"If" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Ig" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Ih" = (/obj/structure/bed/double,/obj/effect/zone_divider,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Ii" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzleone"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Ij" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Ik" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlesix"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Im" = (/obj/structure/closet,/obj/item/pickaxe/excavationdrill,/obj/item/xenoarch_multi_tool,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"In" = (/obj/structure/window/plastitanium,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Io" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Iq" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Ir" = (/obj/effect/floor_decal/corner/purple/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"Is" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Iu" = (/obj/structure/table/standard,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"IA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"IB" = (/obj/machinery/power/tesla_coil/relay,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"IE" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/rig_module/mounted/sizegun,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"IF" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"IG" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"IH" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/misc,/obj/random/mainttoyloot/nofail,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"II" = (/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"IJ" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"IK" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalZ"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"IL" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"IN" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/engihead) +"IQ" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"IS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"IT" = (/obj/random/mob/fish,/turf/simulated/floor/water/indoors,/area/surface/tyr/eclipse_stronghold/poolroom) +"IU" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"IV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"IW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"IX" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"IY" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/alien,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"IZ" = (/obj/structure/bed/chair/backed_grey,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Jd" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Je" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks) +"Jh" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 0; phoron = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Ji" = (/obj/effect/floor_decal/corner/orange/border,/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Jl" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Jr" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Jt" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"Ju" = (/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"Jv" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"Jx" = (/turf/simulated/floor/outdoors/grass,/area/surface/tyr/eclipse_stronghold/antroom) +"Jy" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"JB" = (/obj/machinery/power/rad_collector,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB) +"JC" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"JE" = (/obj/structure/closet/crate,/obj/random/material,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"JH" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"JJ" = (/mob/living/simple_mob/animal/tyr/glowing_beetle,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"JL" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"JM" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"JO" = (/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"JP" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes/farwacubes,/obj/item/storage/box/monkeycubes/sarucubes,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"JQ" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"JR" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"JS" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"JW" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"JX" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"JZ" = (/obj/structure/table/fancyblack,/obj/structure/stripper_pole,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Ka" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Kb" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Kc" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"Kd" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"Ke" = (/obj/structure/toilet/prison{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Kf" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/structure/curtain/black,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Kh" = (/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/cafe) +"Kk" = (/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ko" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"Kp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"Kq" = (/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Kr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"Ks" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/generatorB) +"Ku" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Kv" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/antroom) +"Kw" = (/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue) +"Ky" = (/obj/structure/table/standard,/obj/item/holosign_creator/medical,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"Kz" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"KA" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"KB" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"KC" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"KF" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"KG" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"KH" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"KI" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"KM" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"KN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"KO" = (/turf/simulated/floor/water/contaminated,/area/surface/tyr/precursorruins/finale) +"KS" = (/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"KU" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"KV" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"KW" = (/obj/structure/bed/double,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"KX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/reinforced{nitrogen = 500; oxygen = 0},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"KY" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"La" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Lc" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/ointment,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"Lg" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"Lh" = (/obj/machinery/power/rad_collector,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Li" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Lj" = (/turf/simulated/floor/reinforced{nitrogen = 500; oxygen = 0},/area/surface/tyr/eclipse_stronghold/chemicalgas) "Lk" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/mineral/light/tyr,/area/surface/tyr/north_caverns) -"Lt" = (/turf/simulated/wall/shull,/area/surface/tyr/huntery) -"Lx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"Ly" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"LA" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"LB" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/northern_wilderness) -"LD" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"LF" = (/obj/structure/table/standard,/obj/item/pickaxe/gold,/obj/item/clothing/suit/space/anomaly,/obj/item/clothing/head/helmet/space/anomaly,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"LG" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/misc,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"LJ" = (/obj/machinery/light/small,/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/sectore) -"LK" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"LU" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"LV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"LW" = (/obj/structure/table/standard,/obj/item/clothing/suit/space/anomaly/alt,/obj/item/clothing/head/helmet/space/anomaly/alt,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"LX" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/huntery) -"LY" = (/obj/machinery/artifact,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/sectore) -"Ma" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Mb" = (/obj/structure/filingcabinet,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Mf" = (/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Mg" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/sectore) +"Ll" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Lo" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Lq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom) +"Lr" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"Ls" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Lt" = (/obj/structure/inflatable,/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"Lu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"Lw" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"Lx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"Ly" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Lz" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"LA" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"LB" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"LC" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"LD" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"LF" = (/obj/structure/table/standard,/obj/item/pickaxe/gold,/obj/item/clothing/suit/space/anomaly,/obj/item/clothing/head/helmet/space/anomaly,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"LG" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/misc,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"LJ" = (/obj/machinery/light/small,/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"LK" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"LL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"LO" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"LP" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"LR" = (/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"LT" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"LU" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrpuzzlecheckA"},/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/finale) +"LV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"LW" = (/obj/structure/table/standard,/obj/item/clothing/suit/space/anomaly/alt,/obj/item/clothing/head/helmet/space/anomaly/alt,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"LX" = (/obj/machinery/porta_turret/alien{can_salvage = 0; installation = /obj/item/gun/energy/curse_blaster},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"LY" = (/obj/machinery/artifact,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold) +"LZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Ma" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Mb" = (/obj/structure/filingcabinet,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"Mc" = (/obj/structure/table/standard,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"Me" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"Mf" = (/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Mg" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom) "Mi" = (/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/northern_wilderness) -"Mj" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material/refined,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Mn" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"Mq" = (/obj/machinery/vending/giftvendor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Mr" = (/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Mt" = (/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"My" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"Mj" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material/refined,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"Ml" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"Mm" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/toolstorage) +"Mn" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalF"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Mo" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Mp" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Mq" = (/obj/machinery/vending/giftvendor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Mr" = (/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"Mt" = (/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Mu" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Mv" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"My" = (/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) "Mz" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/finale) -"MD" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"ME" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"MK" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"MP" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"MQ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/huntery) -"MR" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/southeast) -"MX" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"MY" = (/obj/machinery/light/small{dir = 8},/turf/simulated/mineral/light/tyr,/area/surface/tyr/north_caverns) -"MZ" = (/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/town) -"Na" = (/obj/random/obstruction,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) +"MD" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"ME" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlefour"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"MH" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"MJ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"MK" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"ML" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"MO" = (/obj/effect/floor_decal/corner/lime/bordercorner,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"MP" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"MQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"MR" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/finale) +"MT" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"MW" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"MX" = (/obj/structure/table/standard,/obj/item/toy/plushie,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"MY" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"MZ" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Na" = (/obj/random/obstruction,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Nb" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) "Nc" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Nd" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/northern_wilderness; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_w"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) -"Ne" = (/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Nf" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ng" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ni" = (/obj/machinery/appliance/cooker/oven,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Nj" = (/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Nn" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/mineral/light/tyr,/area/surface/tyr/south_caverns) -"Nt" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Nu" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"Nv" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Nw" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Nx" = (/obj/structure/table/rack/shelf,/obj/item/tool/wrench/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"Ny" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"NA" = (/obj/structure/bookcase,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"NE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"NH" = (/obj/effect/floor_decal/corner/yellow/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"NI" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/eelmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/dragonmeat,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"NK" = (/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/town) -"NQ" = (/obj/structure/table/rack/shelf,/obj/item/cell/device/weapon/empproof,/obj/item/cell/device/weapon/empproof,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"NS" = (/obj/item/gun/energy/hooklauncher,/obj/structure/table/reinforced,/obj/structure/curtain/bed,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"NY" = (/obj/structure/flora/tyr/stonetree,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Od" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"Oe" = (/obj/effect/floor_decal/corner/lime/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"Ol" = (/obj/machinery/smartfridge/secure/extract,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Om" = (/obj/item/beach_ball,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Or" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Oz" = (/obj/machinery/light/small,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"OB" = (/obj/structure/table/standard,/obj/item/clothing/suit/space/anomaly/alt,/obj/item/clothing/head/helmet/space/anomaly/alt,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"OF" = (/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot) -"OJ" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"OK" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) +"Nd" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/south_caverns) +"Ne" = (/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Nf" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ng" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Nh" = (/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Ni" = (/obj/machinery/appliance/cooker/oven,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Nj" = (/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Nn" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/south_caverns) +"Nr" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Ns" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"Nt" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Nv" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"Nw" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Ny" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Nz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"NA" = (/obj/structure/bookcase,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"NC" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"ND" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"NE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"NH" = (/obj/structure/table/standard,/obj/item/toy/plushie,/obj/random/medical/pillbottle,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"NI" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/eelmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/dragonmeat,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"NP" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"NQ" = (/obj/structure/table/rack/shelf,/obj/item/cell/device/weapon/empproof,/obj/item/cell/device/weapon/empproof,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"NR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"NS" = (/obj/item/gun/energy/hooklauncher,/obj/structure/table/reinforced,/obj/structure/curtain/bed,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"NT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"NU" = (/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"NV" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"NW" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"NZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"Oa" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ob" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Od" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"Oe" = (/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Oh" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold) +"Ol" = (/obj/machinery/smartfridge/secure/extract,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"Om" = (/obj/item/beach_ball,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"On" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Oo" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_syrup/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Op" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/purple/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Or" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Ot" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Ov" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/structure/curtain/black,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Ox" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"Oz" = (/obj/machinery/light/small,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"OB" = (/obj/structure/table/standard,/obj/item/clothing/suit/space/anomaly/alt,/obj/item/clothing/head/helmet/space/anomaly/alt,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"OE" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"OI" = (/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/engihead) +"OJ" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"OK" = (/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"ON" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"OO" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) "OQ" = (/turf/simulated/mineral/light/tyr,/area/surface/tyr/south_caverns) -"OR" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"OV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/huntery) -"OZ" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"Pb" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Pe" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Pg" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalZ"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"Pk" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Pn" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Pp" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Pq" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/town_hall) -"Pr" = (/mob/living/simple_mob/slime/xenobio/sepia,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Pu" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/engineering,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Py" = (/turf/simulated/wall/r_lead,/area/surface/tyr/huntery) -"PA" = (/obj/structure/table/fancyblack,/obj/structure/stripper_pole,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"PC" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"PE" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"PF" = (/obj/structure/table/standard,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/effect/zone_divider,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"PK" = (/obj/machinery/vending/boozeomat,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"PM" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"PP" = (/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"PS" = (/obj/structure/table/standard,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"PT" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzleb) -"PV" = (/obj/structure/table/standard,/obj/item/material/minihoe,/obj/item/material/minihoe,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"PY" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Qd" = (/obj/machinery/light/small,/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Qq" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) +"OR" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"OT" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"OU" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"OV" = (/obj/effect/zone_divider,/turf/simulated/wall/r_lead,/area/surface/tyr/northern_wilderness) +"OW" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"OX" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"OY" = (/obj/effect/zone_divider,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"OZ" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"Pb" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Pe" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Pj" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/breakroom) +"Pk" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"Pl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"Pn" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"Po" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"Pp" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Pr" = (/mob/living/simple_mob/slime/xenobio/sepia,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"Ps" = (/obj/effect/floor_decal/corner/purple/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Pt" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"Pu" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/engineering,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Pv" = (/obj/structure/cable,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Px" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Py" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"Pz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"PA" = (/obj/structure/table/fancyblack,/obj/structure/stripper_pole,/mob/living/simple_mob/humanoid/eclipse/head/scientist,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"PC" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"PD" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"PE" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"PF" = (/obj/structure/table/standard,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/effect/zone_divider,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"PH" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"PK" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"PL" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"PN" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"PP" = (/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"PS" = (/obj/structure/table/standard,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"PV" = (/obj/structure/table/standard,/obj/item/material/minihoe,/obj/item/material/minihoe,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"PW" = (/obj/structure/filingcabinet/security,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"PX" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/cmooffice) +"PY" = (/obj/structure/window/plastitanium{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"PZ" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"Qa" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Qb" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"Qd" = (/obj/structure/window/plastitanium{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Qe" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/firstaid,/obj/random/cash/huge,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Qi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Qj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"Ql" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Qm" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"Qo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Qp" = (/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"Qq" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/animal/tyr/mineral_ants/painite,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) "Qr" = (/obj/effect/zone_divider,/turf/simulated/wall/solidrock,/area/surface/tyr/north_caverns) -"Qt" = (/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Qv" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Qx" = (/obj/structure/closet/crate,/obj/random/material,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Qz" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/alien,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"QA" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"QE" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"QI" = (/mob/living/simple_mob/animal/tyr/mineral_ants/builder,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"QK" = (/obj/structure/table/rack/shelf,/obj/item/tool/wirecutters/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"QR" = (/obj/effect/floor_decal/corner/orange/bordercorner,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"QT" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"QU" = (/obj/structure/table/standard,/obj/item/surgical/retractor,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor,/area/surface/tyr/huntery) -"QX" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/alien,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"QY" = (/obj/machinery/power/rtg/advanced,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Rb" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/sectore) -"Rd" = (/obj/structure/table/gold,/obj/item/gun/energy/curse_blaster,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Qs" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Qt" = (/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Qu" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Qv" = (/obj/machinery/light/small{dir = 1},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"Qx" = (/obj/structure/closet/crate,/obj/random/material,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"Qz" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/alien,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"QA" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"QC" = (/obj/structure/table/steel,/obj/item/handcuffs,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"QE" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"QF" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"QH" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"QJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"QL" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"QM" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"QO" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"QQ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"QR" = (/obj/effect/floor_decal/corner/orange/bordercorner,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"QS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"QT" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"QW" = (/obj/machinery/power/tesla_coil/relay,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"QX" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/alien,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"QY" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"QZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/curtain/medical,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Rb" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) +"Re" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"Rh" = (/obj/structure/curtain/medical,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Ri" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) "Rj" = (/obj/effect/zone_divider,/turf/simulated/wall/solidrock,/area/surface/tyr/south_caverns) -"Rk" = (/obj/structure/flora/tyr/flowers,/obj/random/outcrop,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Rn" = (/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ro" = (/obj/structure/closet/secure_closet/xenoarchaeologist,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"Rp" = (/obj/machinery/appliance/cooker/grill,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Rt" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"Rw" = (/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/town) -"Ry" = (/obj/machinery/optable,/turf/simulated/floor,/area/surface/tyr/huntery) -"Rz" = (/obj/item/clothing/head/wizard/fake/realistic,/obj/effect/spider/stickyweb,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"RA" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/sectore) -"RC" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/huntery) -"RD" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"RF" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"RH" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"RL" = (/obj/structure/stasis_cage,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"RN" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"RT" = (/obj/structure/prop/alien/computer/hybrid,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"RY" = (/obj/machinery/door/airlock/silver,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"RZ" = (/obj/structure/table/rack/shelf,/obj/machinery/light/small{dir = 1},/obj/item/cell/device/weapon/empproof,/obj/item/cell/device/weapon/empproof,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"Sg" = (/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Sk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"Sl" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/huntery) -"Sn" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"So" = (/obj/structure/table/standard,/obj/item/portable_scanner,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"Sp" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Ss" = (/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"St" = (/obj/structure/closet,/obj/random/maintenance/morestuff,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"SD" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/northwest) -"SE" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"SH" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzleb) -"SI" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"SL" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"SR" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"SS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"SU" = (/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"SW" = (/obj/structure/flora/tyr/flowers,/obj/structure/flora/tyr/stonetree,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Tc" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"Td" = (/obj/machinery/vending/loadout/gadget,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Th" = (/obj/structure/flora/tyr/flowers,/obj/structure/mob_spawner/beetle_hill,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Tj" = (/obj/item/clothing/head/wizard/fake/realistic,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Tk" = (/obj/machinery/light/small,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Ts" = (/obj/structure/table/rack/shelf,/obj/item/ammo_casing/microbattery/medical/haste,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"Tv" = (/obj/machinery/vending/snack,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"TC" = (/obj/structure/bed/double,/obj/item/bedsheet/yellowdouble,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"TD" = (/obj/structure/table/rack/shelf,/obj/item/ammo_casing/microbattery/medical/resist,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"TE" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"TG" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"TO" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"TR" = (/obj/machinery/vending/foodasian,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"TS" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/town; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_e"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"TV" = (/obj/structure/closet/crate,/obj/random/material/precious,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Uh" = (/obj/effect/spider/stickyweb,/obj/item/clothing/head/wizard,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Ui" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Uj" = (/obj/structure/table/rack/shelf,/obj/item/weldingtool/experimental/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) +"Rn" = (/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/cafe) +"Ro" = (/obj/structure/closet/secure_closet/xenoarchaeologist,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Rp" = (/obj/machinery/appliance/cooker/grill,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"Rq" = (/obj/machinery/the_singularitygen/tesla,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Rt" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"Ru" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"Rz" = (/obj/item/clothing/head/wizard/fake/realistic,/obj/effect/spider/stickyweb,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"RA" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"RD" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"RE" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"RF" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"RG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"RH" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"RI" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom) +"RJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"RK" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"RL" = (/obj/structure/stasis_cage,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"RM" = (/obj/structure/toilet/prison{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"RO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"RQ" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"RR" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"RW" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/showers) +"RY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"RZ" = (/obj/structure/table/rack/shelf,/obj/machinery/light/small{dir = 1},/obj/item/cell/device/weapon/empproof,/obj/item/cell/device/weapon/empproof,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"Sc" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"Sd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"Sf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Sg" = (/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Si" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Sn" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"So" = (/obj/structure/table/standard,/obj/item/portable_scanner,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"Sp" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"Sq" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/stash) +"Ss" = (/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"St" = (/obj/structure/closet,/obj/random/maintenance/morestuff,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Su" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Sx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Sy" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Sz" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"SA" = (/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"SB" = (/obj/machinery/clonepod/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"SC" = (/obj/machinery/computer/pandemic,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"SE" = (/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"SF" = (/turf/simulated/wall/r_lead,/area/surface/tyr/eclipse_stronghold) +"SG" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"SI" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"SJ" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"SL" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"SM" = (/obj/structure/bed/chair/backed_grey{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"SP" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/engihead) +"SR" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"SS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"SU" = (/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"SV" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"SW" = (/turf/simulated/shuttle/floor/alienplating{phoron = 400},/area/surface/tyr/precursorruins/finale) +"SY" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Ta" = (/obj/structure/bed/chair/backed_grey{dir = 1},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Tb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"Tc" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"Td" = (/obj/machinery/vending/loadout/gadget,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Te" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"Tf" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"Tg" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Th" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) +"Ti" = (/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Tj" = (/obj/item/clothing/head/wizard/fake/realistic,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Tk" = (/obj/machinery/light/small,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Tp" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Tr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Tv" = (/obj/machinery/vending/snack,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"Tz" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"TA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"TB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA) +"TC" = (/obj/structure/bed/double,/obj/item/bedsheet/yellowdouble,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"TE" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"TH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse) +"TI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"TO" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"TR" = (/obj/machinery/vending/foodasian,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"TV" = (/obj/structure/closet/crate,/obj/random/material/precious,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold) +"TX" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"TY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"Ua" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"Uc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Ud" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold) +"Uh" = (/obj/effect/spider/stickyweb,/obj/item/clothing/head/wizard,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Ui" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Ul" = (/obj/structure/bed/chair/sofa/black{dir = 4},/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Um" = (/obj/structure/bed/pillowpile/yellow,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) "Uo" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) -"Us" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Uv" = (/obj/structure/bed/pillowpile/green,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"UA" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"UC" = (/obj/structure/table/rack/shelf,/obj/item/ammo_casing/microbattery/medical/shrink,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"UG" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"UH" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckB"},/obj/effect/zone_divider,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"UJ" = (/mob/living/simple_mob/animal/giant_spider/nurse/space,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"UK" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzlea) -"UP" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"UQ" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/surface/tyr/huntery) -"UR" = (/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Vd" = (/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"Ve" = (/mob/living/simple_mob/animal/tyr/rainbow_fly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Vp" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"Us" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ut" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/recoveryA) +"Uu" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"Uv" = (/obj/structure/bed/pillowpile/green,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"Uw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Uz" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"UA" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"UD" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"UF" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/recoveryA) +"UG" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"UJ" = (/mob/living/simple_mob/animal/giant_spider/nurse/space,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"UM" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"UN" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold) +"UO" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/recoveryC) +"UP" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"UQ" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/northern_wilderness) +"UR" = (/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"UT" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/cmooffice) +"UU" = (/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"UW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/curtain/black,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"UY" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"Vb" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/docks) +"Vc" = (/obj/machinery/power/tesla_coil/collector,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Vd" = (/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"Vf" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Vg" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB) +"Vj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"Vk" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Vl" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Vn" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"Vp" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Vq" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) "Vr" = (/turf/simulated/wall/solidrock,/area/surface/tyr/north_caverns) -"Vt" = (/obj/effect/floor_decal/corner/blue/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold/sectore) -"Vu" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Vv" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Vx" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Vy" = (/obj/structure/prop/alien/power,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"VA" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"VC" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"VD" = (/obj/structure/table/standard,/obj/item/surgical/bone_clamp,/turf/simulated/floor,/area/surface/tyr/huntery) -"VE" = (/obj/structure/table/rack/shelf,/obj/item/ammo_casing/microbattery/medical/grow,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"VN" = (/obj/structure/table/standard,/obj/item/surgical/scalpel,/turf/simulated/floor,/area/surface/tyr/huntery) -"VO" = (/obj/structure/table/standard,/obj/item/surgical/hemostat,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor,/area/surface/tyr/huntery) -"VQ" = (/mob/living/simple_mob/humanoid/eclipse/head/security,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"VR" = (/obj/structure/outcrop/weathered_gate,/obj/item/stack/material/weathered_agate,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"VV" = (/obj/structure/table/rack/shelf,/obj/item/tool/crowbar/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"VW" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalF"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"VZ" = (/obj/structure/outcrop/weathered_gate,/obj/item/stack/material/weathered_agate,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Wa" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/huntery) -"Wc" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Wd" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"We" = (/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"Wj" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Wo" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"Wp" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"Wv" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Wx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"Wy" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/sectore) -"Wz" = (/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckA"; opacity = 0},/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckB"; opacity = 0},/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckC"; opacity = 0},/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrgroupcheckD"; opacity = 0},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"WB" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"WG" = (/obj/structure/table/bench/padded,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"WH" = (/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"WI" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckA"},/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/finale) -"WJ" = (/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"WK" = (/obj/structure/table/standard,/obj/random/meat,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/sectore) -"WR" = (/obj/structure/table/rack/shelf,/obj/item/tool/screwdriver/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"WU" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/huntery) -"WZ" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"Xc" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Xe" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Xg" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"Xh" = (/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Xn" = (/obj/machinery/seed_storage,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"Xq" = (/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Xs" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Xx" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) -"XE" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/mining_depot) -"XI" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"XS" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot) -"XX" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ya" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectore) -"Yb" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Ye" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Yl" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ym" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/morestuff,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Yn" = (/obj/effect/spider/stickyweb,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Yq" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckA"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckB"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckC"},/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckD"},/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrpuzzlecheckA"; opacity = 0},/obj/machinery/door/blast/puzzle{density = 0; icon_state = "pdoor0"; id = "tyrpuzzlecheckA"; opacity = 0},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/northern_wilderness) -"Yt" = (/obj/item/clothing/suit/wizrobe,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Yu" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Yv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"Yy" = (/obj/effect/floor_decal/corner/white/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"YB" = (/obj/machinery/light/small,/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"YF" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold/sectore) -"YI" = (/obj/structure/table/standard,/obj/item/portable_destructive_analyzer,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold/sectore) -"YK" = (/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/southern_wilderness) -"YL" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"YM" = (/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"YN" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"YP" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"YV" = (/obj/random/multiple/gun/projectile/shotgun,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"YW" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"YY" = (/obj/structure/table/bench/padded,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/sectore) +"Vt" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb) +"Vu" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Vv" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Vw" = (/obj/structure/bed/double,/obj/item/toy/plushie,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Vx" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Vz" = (/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA) +"VA" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/antroom) +"VB" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"VC" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"VJ" = (/obj/random/vendorsnack,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"VK" = (/obj/machinery/power/tesla_coil,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"VQ" = (/mob/living/simple_mob/humanoid/eclipse/head/security,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"VU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"VY" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"Wa" = (/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness) +"Wc" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/turcarpet,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"We" = (/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"Wf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Wg" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold) +"Wh" = (/obj/structure/bed/chair/backed_grey,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Wj" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Wm" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"Wn" = (/obj/structure/bed/chair/sofa/black,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Wo" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"Wr" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ws" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers) +"Wt" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe) +"Wv" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Ww" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"Wx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"Wy" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"WA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"WB" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"WC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"WD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"WF" = (/obj/structure/table/reinforced,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold) +"WG" = (/obj/structure/table/bench/padded,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"WH" = (/obj/effect/floor_decal/corner/orange/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"WJ" = (/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"WK" = (/obj/structure/table/standard,/obj/random/meat,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice) +"WL" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"WQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"WS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"WT" = (/obj/effect/floor_decal/corner/purple/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"WU" = (/turf/simulated/wall/shull,/area/surface/tyr/northern_wilderness) +"WV" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"WX" = (/obj/structure/bed,/obj/machinery/light/small{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Xa" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Xc" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe) +"Xd" = (/obj/structure/window/plastitanium{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Xe" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Xf" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/poolroom) +"Xg" = (/obj/item/toy/plushie,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Xh" = (/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Xj" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Xk" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA) +"Xl" = (/obj/structure/bed/chair/backed_grey,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"Xn" = (/obj/machinery/seed_storage,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe) +"Xq" = (/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Xr" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"Xt" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/big,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"Xu" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"Xv" = (/obj/effect/floor_decal/corner/yellow/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage) +"Xx" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) +"XA" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC) +"XD" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"XE" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/northern_wilderness) +"XG" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"XI" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"XL" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"XM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"XO" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro) +"XT" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold) +"XW" = (/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"XX" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"XY" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/chemista) +"XZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage) +"Ya" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks) +"Yb" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace) +"Ye" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Yf" = (/obj/structure/curtain,/obj/item/toy/plushie,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Yg" = (/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics) +"Yk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB) +"Yl" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Ym" = (/obj/structure/closet,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/morestuff,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Yn" = (/obj/effect/spider/stickyweb,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Ys" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"Yt" = (/obj/item/clothing/suit/wizrobe,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Yu" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Yv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold) +"Yw" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/researchleadoffice) +"Yx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"Yy" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery) +"YB" = (/obj/machinery/light/small,/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB) +"YC" = (/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"YE" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/huge,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash) +"YF" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold) +"YI" = (/obj/structure/table/standard,/obj/item/portable_destructive_analyzer,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold) +"YL" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"YM" = (/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"YN" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"YP" = (/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness) +"YS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"YV" = (/obj/random/multiple/gun/projectile/shotgun,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold) +"YW" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"YX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC) +"YY" = (/obj/structure/table/bench/padded,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom) "YZ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) -"Zb" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefour"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"Ze" = (/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzleb) -"Zg" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/obj/effect/zone_divider,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Zh" = (/turf/simulated/floor/water/contaminated,/area/surface/tyr/precursorruins/spotthediffrence) -"Zl" = (/mob/living/simple_mob/animal/tyr/rainbow_fly,/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Zp" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold/sectore) -"Zq" = (/obj/effect/floor_decal/corner/orange/border{dir = 9},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Zt" = (/obj/structure/table/rack/shelf,/obj/item/melee/energy/sword/dualsaber,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzleb) +"Za" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage) +"Zc" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel) +"Zf" = (/obj/machinery/power/generator{anchored = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens) +"Zg" = (/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas) +"Zj" = (/obj/effect/zone_divider,/obj/structure/curtain/medical,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice) +"Zn" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse) +"Zo" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"Zp" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold) +"Zq" = (/obj/effect/floor_decal/corner/orange/border{dir = 9},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold) +"Zv" = (/obj/effect/zone_divider,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro) +"Zw" = (/obj/item/storage/firstaid/surgery,/obj/structure/table/standard,/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery) +"Zx" = (/obj/structure/curtain,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice) "Zy" = (/turf/simulated/mineral/light/tyr,/area/surface/tyr/north_caverns) -"ZF" = (/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ZJ" = (/obj/machinery/appliance/cooker/fryer,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"ZL" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/sectore) -"ZP" = (/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"ZU" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) +"ZD" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany) +"ZF" = (/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ZJ" = (/obj/machinery/appliance/cooker/fryer,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe) +"ZL" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold) +"ZM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom) +"ZP" = (/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch) +"ZQ" = (/obj/structure/bed/pillowpile,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead) +"ZR" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA) +"ZS" = (/obj/machinery/light/small{dir = 1},/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage) +"ZT" = (/obj/machinery/vending/security,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold) +"ZU" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold) +"ZW" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage) (1,1,1) = {" VrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrafafafafafafafVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYwYwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYajCWajCWajwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzWxbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzWxbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzWxbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzWxbzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYajCWCWCWCWCWajwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdededededededededededededededebzbzbzdededededededededededededededebzbzbzdededededededededededededededebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYajCWCWCWCWCWajwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdededededededededededededededebzbzbzdededededededededededededededebzbzbzdedededededfdvdvdvdfdededededebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZybEZycpZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTYabzdedfpKpKpKdfdedededfpKpKpKdfdeGmtTfJdedededededemededededededededeGmtTfJdededededfdffefefedfdfdedededebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZybEcpcpZybEZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYaNaNaNwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdepKJefeJepKdededepKJefeJepKdeGmtTfJdededededededededededededededeGmtTfJdedededfdffhfmfmfmfhdfdfdededebzyrtTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTcrtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYFVCWCWCWCWCWFVwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdepKJefmJepKdededepKJefmJepKdebzbzbzdededededededededededededededebzbzbzdededfdffeJeJeJeJeJefedfdfdedebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWebCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdepKJeJeJepKdededepKJeJeJepKdebzbzbzdededededededededededededededebzbzbzdededffpJeJeJeJeJeJeJegfdfdedebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYeWdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdedfJeJeJedfdedededfJeJeJedfdebzbzbzdededededededededededededededebzbzbzdededffhJegkJeJeJegkJefhdfdedebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYdYdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTYabzdedfJeJeJedfdedededfJeJeJedfdebzbzbzdededededededededededededededebzbzbzdedfdfdfdfdfdfdvdfdfdfdfdfdfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYdYdYdYdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWFVCWCWCWCWCWFVCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfdfJeJeJedfdedededfJeJeJedfdfGmtTfJdededededededededededededededeGmtTfJdedvJeJeJeJedfJeJeJeJeJeJedvdebzyrtTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYekdYdYdYekdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJeJegmdfpKpKpKdfgHJeJeJedfGmtTfJdededededededededededededededeGmtTfJdedvJeJeJeJedfJeJeJeJeJeJedvdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZybEtTtTdYdYdYeAtTeUdYeAtTeUdYdYdYtTtTbEbEbEZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJeJegmdffefefedfgHJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfdfdfdfJedfdfdfdfdfdfdfdfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZycpcptTdYdYdYdYdYeYdYdYdYeYdYdYdYdYdYtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdvJeJeJegmdfJefmJedfgHJeJeJedvbzbzbzdededededededededededededededebzbzbzdedfgXgXhaJegXhagXgXhagXgXdfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZycpcrdYdYdYdYdYdYdYdYdYdYdYdYdYdYdYcrcpZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdvJeJeJedfdfJeJeJedfdfJeJeJedvbzbzbzdededededededededededededededebzbzbzdedfhGJeJeJeJeJeJeJeJeJefedfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTdYdYdYdYdYekdYdYdYekdYdYdYdYdYtTcpcpZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJedfdfJeJeJeJeJedfdfJeJedfbzbzbzdededededededededededededededebzbzbzdedffmfmhMfmfmhMfmfmhMfmfmdfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZybEbEtTtTdYdYdYeAtTeUdYeAtTeUdYdYdYtTtTbEZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJedfhVJeJeJeJeJehVdfJeJedfGmtTfJdededededededededededededededeGmtTfJdedfdfdfdfdfdfdfdfdfdfdfdfdfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYeYdYdYdYeYdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJedfdfJeJeJeJeJedfdfJeJedfGmtTfJdededededededededededededededeGmtTfJdedfJeikJeJeJeiAJeJeJeikJedfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYdYdYdYdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTYabzdfJeJejkdfJeJeJeJeJedfjkJeJedfbzbzbzdededededededededededededededebzbzbzdedfJejNkblklrlGlGlkmDjNJedfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYdYdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJeJedfdfdvdfdvdfdfJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfocjNoydfoApzpAdfoyjNpRdfdebzyrtTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJeJedfdfdedededfdfJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfJejNoydfdfdfdfdfoyjNJedfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTdYdYdYtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfJeJeJedfdedededededfJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfJepUqFlrlGlGlGlrrWsbJedfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdfshshshdfdedededededfshshshdfGmtTfJdededededededededededededededeGmtTfJdedfshshsHsQJeJeJesQthshshdfdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWFVCWCWCWCWCWFVCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTYabzdfdfdfdfdfdedededededfdfdfdfdfGmtTfJdededededededededededededededeGmtTfJdetLtRtRtRtYdvdfdvuCtRtRtRuVdebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdedfdfdfdedededededededfdfdfdebzbzbzdededededededededededededededebzbzbzdevdvdvdvdvddededevdvdvdvdvddebzyrtTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRjBGejBmFjBmFjBmFjBmFjBmFjBmttTfkfkfIfIfIfIfkfktTxDmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzdededededededededededededededebzbzbzdededededededededededededededebzbzbzdededededededededededededededebzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRmFjBmFjBmFjBmFjBmFjBmFjBtsxRivfkfkiIiIiIiIfkfkivyyjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRjBmFyFAeAJAeAJAeAJAeAJCKjBmttTjtfktTtTtTtTfkjLtTxDmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYFVCWCWCWCWCWFVwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTbzORbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzORbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzORbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzORbztTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRmFjBPEtTtTtTtTtTtTtTtTYumFxRtTfkfkfIfIfIfIfkfktTyyjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYiViViVwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTtTtTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTtTtTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTtTtTVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRjBmFSEtTJrtTkJkJlmkJtTgPjBmttTfkfkiIiIiIiIfkfktTxDmFjBtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhtTpKtTvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhtTpKtTvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTqRmFjBPEtTkJtTmorruTzitTIImFxRtTjtfktTtTtTtTfkjLtTyyjBmFjBGejBmFjBmFjBmFjBmFQTmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyMYZyZyZyZyZyZyZyZyZytTvJvhvQvhvJvXvJvhvJvXvJvhvQvhvJtTpKtTvJvhvQvhvJvXvJvhvJvXvJvhvQvhvJtTpKtTvJvhvQvhvJvXvJvhvJvXvJvhvQvhvJtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBGejBmFjBjcjBmFSEtTzqtTkJAouTzitTgPjBmtivfkfkfIfIfIfIfkfkivxDBajBmFjBmFjBmFjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYdWdWdWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTvhwmtTGcsZtTwAvJwCtTsZGctTwMvhtTpKtTvhwmtTGcsZtTwAvJwCtTsZGctTwMvhtTpKtTvhwmtTGcsZtTwAvJwCtTsZGctTwMvhtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFjBmFHPmFjBPEtTkJlmkJAouTzitTIImFxRtTfkfkiIiIiIiIfkfktTyyjBGyKSXhKSXhKSXhKSXhKSNgjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTmFjBmFtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTwMvhvJvhvJvhvJvhvJvhvJvhvJvhwmtTpKtTwMvhvJvhvJvhvJvhvJvhvJvhvJvhwmtTpKtTwMvhvJvhvJvhvJVtvJvhvJvhvJvhwmtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFyFAeAJoXAJDHSstTBZkJBZtTtTtTtTjljBmttTtTtTtTtTtTtTtTtTtTmhmFxRtTtTtTtTtTtTtTtTtTmhmFRFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZytTtTtTtTgNmFmItTjBmFjBtTJhmFgNtTtTtTeMZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTvhwmtTGcsZtTwAvJwCtTsZGctTwMvhtTpKtTvhwmtTGcsZtTwASLwCtTsZGctTwMvhtTpKtTvhwmtTGcsZtTwAvJwCtTsZGctTwMvhtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPEtTtTqRtTtTtTtTtTCetTtTiyusfcaQmFArCYuNVpuNVpuNVpuNVpiYXXjBmttTCuFrTCHJFrqyTCtTyyjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTtTtTmFmFoVmFmFmFtTmFjBmFtTmFmFmFoVmFmFtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTvJvhwWvhvJxrvJvhvJxrvJvhwWvhvJtTpKtTvJvhwWvhvJxrvJvhvJxrvJvhwWvhvJtTpKtTvJvhwWvhvJxrvJvhvJxrvJvhwWvhvJtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFSEtTAFqVAFAFAFtStStStStTIIonjBmFjBmFjBmFjBmFjBmFjBfMjBmFjBmFxRtTCuywywywywywKHtTxDmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTtTmFmFmFhWrGrGrGtTKImFRFtTrGrGrGjnmFmFmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhtTpKtTvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhtTpKtTvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTmFjBPEtTpEedtStStStStStStStTgPjBGyKSXhKSXhKSXhKSXhKSNgjBGyKSXhKScvtTFrywywywywywywtTyyjBmFtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTtTjWmFmFoVmFmFkEtTmFjBmFtTlCmFmFoVmFmFjWtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtToVoVtTtTtTtTtTtTtTtTtTtTtToVoVtTtTtToVoVtTtTtTtTtTtTtTtTtTtTtToVoVtTtTtToVoVtTtTtTtTtTtTtTtTtTtTtToVoVtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFQTmFjBmFjBmFQTmFjBmFjBmFQTmFjBmFjBmFSEoVtSedtStStSaPeLeLhAtTIImFRDtTtTtTtTtTtTtTtTtTxDmFRDtTtTPktTtTTCNwywywywywywtTxDmFjBmFQTmFjBmFjBmFjBmFQTmFtTZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTtTyNmFBalLmFmFmFtTjBmFjBtTmFmFmFYlBamFzJtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBGejBYNNeZFNeZFbvZFNeZFNeZFbvZFdlZFNeZFbvZFNeZFNeZFNeZFNePbNeZFNeZFNeZFNeZFbvZFNeZFNeZFNeZFNePbNeZFNeZFNeZFNetTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBBajBmFjBmFjBmFjBmFjBmFjBmFjBmFjBjWjBmFjBPEtTtSedtStStSbxNjAUkdtTgPjBmttTkZTvBmHCigTvkZtTyyjBmttToDywoDtTtTywywywywywywtTyyjBmFjBMyjBmFjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTmRmFmFmFmEmFmFmItTmFjBmFtTJhmFmFmEmFmFmFmOtTZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFWvmFjBmFjBmFjBmFjBonjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFBBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBoijBmFjBzJtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBGyKSXhKSXhKSXhKSXhKSXhKSXhKSNgjBKqAJDHSstTNSFLvytStSbxAUPANjtTIImFxRtTaxaxaxaxaxaxaxtTxDmFxRtTywywywywtTtTywywywywywtTvmXhKSNgjBGyKSXhKSXhKSNgjBmFtTZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTmRmFmFmFmZrGrGrGtTKImFRFtTrGrGrGnbmFmFmFnxtTZyZyZytTySySySySVuySySySySySySVuySySySySGejBmFjBmFjBmFjBmFQTmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFXqftKSXhKSXhKSXhKSXhKSXhKSXhJdNgjBaToZiWqYiWqYiWqYiWqYiWqYiWoZiWqYiWqYiWqYbNeXlteXlteXeZqYiWqYiWoZJSjBmFOzmFjBtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFRDtTtTtTtTtTtTtTtTtTtTtTtTtTmhmFactTtTtTtTKWIhvytStSgrkdJZqWtTgPjBmtreaxaxaxaxaxaxaxreyyjBmttTywywywywywtTtTywywywywtTtTtTtTxDmFRDtTtTtTtTtTmhmFRFtTZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTohoimFmFmEmFmFmItTmFjBmFtTJhmFmFmEmFmFonoztTZyZyZytTySySDmoTySDmySDmDmySDmySySDmySySjBmFjBmFjBDhjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmttTtTtTtTtTtTtTtTtTtTcZtTtTtTxDmFCBtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTgAtTtTtTtTheiJiStTtTtTtTMfmFjBtTtTtTtTZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmttTuDuDMguDuDuDuDuDMguDuDtTyyjBPEtTNaNatTHnIhvytStSbxNjAUkdtTIImFxRtTTRaxkrtnYYaxMqtTxDmFxRtTywywywywywuetTtTvZywvZtTNaNatTDgjBmttTyGlXyGtTyyjBmFtTZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZytTqQmFmFmFqXmFmFmFtTjBrtjBtTmFmFmFrHmFmFmFrVtTZyZyZytTySySIuIuIuIuIuIuIuIuIuIuIuIuySySRnjBmFjBmFjBmFjBmFOzmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFRDtTVdVdVdVdLxVdVdLxVdVdVdVdtTyyjBVxtTNaNaNaNaNaNaNaNaNaNaNatTjhlvjhjhlvlRgAhemfnznzqkqkqknznztTtTWHjBzJtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFxRtTuDhdhdhdhdhdhdhdhdhduDtTxDmFSEtTtTtTtTtTqRtTtTtTtTtTtTtTtTgPjBmttTHkaxWGFBWGaxXxtTyyjBmttTywywywywywywTCtTtTPktTtTtTtTtTxDmFxRtTyGyGyGtTxDmFjBtTtTtTtTtTtTtTtTtTtTZyZyanZyZyZyZyZyZyZyZyZytTrVmFmFmFoVmFmFkEtTtsjBtstTlCmFmFoVmFmFmFtXtTZyZyZytTySySDmySySDmySAuDmySDmySySDmySyStTtTtTtTtTtTtTtTtTtTjBmFjBtTZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTmFjBmttTVdVdVdVdVdVdVdVdVdVdVdVdtTxDmFCBtTNaNaNaNaNaNaNaNaNaNaNatTjhtktkyiyTDpDIDMGkJHJHSSSSSSYvobpKoVMfmFjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmttTuDhdhdIThdhdhdhdhdhduDtTyyjBveSgfcSgPCSgDPSgfcSgfcSgfcSgPCaQmFxRtTfwaxWGtnWGaxmctTxDmFxRtTywFmywywywywFrtTMtVpuNVpuNVpuNXXjBmttTyGyGyGtTyyjBmFjBmFjBmFjBmFjBmFjBtTZyZyanZyZyZyZyZyZyZyZyZytTuXmFmFmFhWrGrGrGtTjBrtjBtTrGrGrGjnmFmFmFvatTZyZyZytTySySySySySySySySySySySySySySySyStTJeJeXcJeJeXcJeJetTmFjBmFtTZyZyZyZyZyZyZytTmFjBmFQTmFjBmFQTmFjBmFjBGejBmFxRcZVdVdFhaZaZaZaZaZaZGJVdVdtTDgjByltTtTtTtTtTtTtTtTtTtTtTtTtTjhjhjhoujhpmtTQAIjiqjgSSSSSSsIobrwiSWHjBmFtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFxRtTnghdhdhdhdIThdhdhdhdCatTxDmFjBmFxkmFjBmFHPmFjBmFjBmFjBmFjBmFjBmttTzjaxYYGZkraxTdtTyyjBmttTTCFrqyHJTCFrCutTyyjBmFjBmFjBmFjBmFxRtTyGyGzNtTxDmFjBjWjBmFjBmFjBmFjBmFtTZyZyanZyZyZyZyZyZyZyZyZytTnxmFmFmFoVmFmFzJtTyNjBzJtTyNmFmFoVmFmFmFActTZyZyZytTySySDmySySDmySySySySDmySySnlySyStTFWJeHaJeJewSJeJeDYjBmFjBtTZyZyZyZyZyZyZytTjBMyjBmFjBmFjBmFjBmFjBBajBmFjBmttTVdVdNvJxscJxJxscJxxlVdVdtTxDmFskPbNeZFNeZFNeZFNePbNeZFuqtTHFtktkgqjhExtTQAYvsTsIGkSSSSJHyzhBgAMfmFjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmttTuDhdhdhdhdhdhdIThdhduDtTunKSftNfmFyFDHAJoXAJAeAJAeAJAeAJDHvDmFxRreaxaxaxaxaxaxaxrexDmFRDtTtTtTtTtTtTtTtTtTxDmFXqXhKSXhKSNgjBmttTyGyGyGtTunKSNgjBmFjBmFjBmFjBmFjBtTZyZyanZyZyZyZyZyZyZyZyZytTCsmFmFDhzerLmFkEtTjBmFjBtTlCmFrLYloimFmFmRtTZyZyZytTySySIuIuIuIukICDCHzsIuIuIuIuySySBIJeJeBIJeJeSpJeJetTmFjBmFtTZyZyZyZyZyZyZytTmFjBaToZiWqYiWoZiWqYiWqYnnqYiWBgtTVdVdNvJxJxJxJxJxJxxlVdVdtTyyjBrtjBmFjBmFjBmFjBmFjBmFniVxtTjhjhjhoujhpmtTQASSJHJHJHSSSSJHyzhBgAWHjBzJtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFxRtTuDhdhdIThdhdhdhdhdhduDtTtTtTtTDgjBPptTtTqRtTtTtTtTtTtTcHtTgPjBmttTaxaxaxaxaxaxaxtTyyjBWjuNVpuNVpuNVpuNVpuNXXjBpetTtTtTtTmhmFRDtTKoFlYbtTtTtTmhmFRFtTtTtTtTyNjBzJtTtTtTqRtTtTtTtTtTtTtTtTtTtTtToVtTtTtTtTtTtTtTmFjBmFtTtTtTtTtTtTtToVtTtTtTtTtTtTySySDmySySDmySySySySDmySySDmySySBIJeJeSpJeJeBIJeJetTjBmFjBtTZyZyZyZyZyZyZytTjBmFCBtTtTtTtTtTtTtTtTtTtTtTtTtTtTVdVdNvJxJxJxJxJxJxxlVdVdtTnGnnqYiWqYiWqYiWqYiWqYnnjBmFCBtTjhtTtTgAtTtTheWBpKjgJHYvGkSSIjIjhBgAMfmFjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmttTuDuDixuDuDuDuDuDuDixuDtTbqbqtTxDmFSEtTpKbYpKMKJuJuJuovJutTIImFxRtTkZiUigHCBmiUkZtTxDmFjBmFjBmFjBmFjBmFjBmFjBmFxRtTNaNatTyyjBmttTpKpKpKpKpKUAyyjBmFtTNaNatTjBmFjBmFjBmFlzmFjBmFBBGejBmFjBmFQTmFjBmFjBmFjBGeLymFjBmFjBmFWvGejBmFjBmFjBmFjBmFQTmFjBySySDmEtySDmySySySySDmyfySDmySySBIJeJewSUiJeHaJeJeDYmFsDmFtTtTtTtTtTtTtTtTtTmFjByltTMjJEAHMjJEJEJEJEQxBRJEJEtTVdVdNvJxJxxQJxJxJxxlVdVdtTtTtTtTtTtTtTtTtTtTtTtTtTWHjByltTjhjhjhoujhYWgAQASSSSIjsIobGkJHJHhBgAWHjBmFtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTjBmFRDtTtTtTtTtTtTtTtTipiptTtTtTipkgtTyyjBPEtTpKURpKMKJuJuHTJuJutTgPjBpetTtTtTtTtTtTtTtTtTyyjBGyKSXhKSXhKSXhKSXhKSXhKScvtTNaNatTxDmFxRtTKXpKpKpKPntTxDmFjBtTNaNatTmFjBmFjBmFjBjcjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFySySIuIuIuIukICDCHzsIuIuIuIuySySBIJeJegkJeJegkJeJetTjBmFjBGejBmFQTmFjBmFjBGejBmFCBElqGqGqGqGqGqGqGqGqGLAqGqGtTVdVdNvJxJxJxJxJxJxxlVdVdtTRLrMVdjSRtzCnuSndeCwdetTMfmFCBtTjhjhjhogyTDXorWBGkSSJHJHJHYvobobrwiJIFmFjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBGejBmFjBWjiYVpuNVpuNVpbStTipipipipipipiptTxDmFSEtTpKaCpKiBJuJuJuJuJutTIImFArVpuNVpuNVpuNVpuNVpyOmFRDtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTyyjBmttTpKpKpKpKPntTyyjBmFtTNaNatTjBmFjBmFjBtsHPmFjBmFjBmFjBmFjBmFjBmFOzmFjBuOjBmFjBRnjBmFjBRnjBmFjBATjBmFOzmFjBmFOzmFjBySySDmySySDmySySySySDmySySDmySyStTtTtTtTDYtTtTtTtTtTyNjBmFjBmFjBmFjBmFjBmFjBmFjByltTqGJEMjJEJEMjJEJEBRJEMjqGtTVdVdNvJxgOJxJxgOJxxlVdVdtTrMRLzCVdhRVdybZLdededetTWHjByltTbXymymymymSIgAQAIjSSYvobjgSSIjIjhBgAkXjBmFtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFjBmyjBmFjBmFjBmFjBmttTipipzmipipipiptTyyjBPEtTGjaCpKILJuJuJuJuGRtTgPmHmFjBmFjBmFjBmFjBmFjBmFBBmttTxZtTxZtTxZtTOZOZtTxZtTxZtTxZtTxDmFxRtTpKpKpKpKpKUAxDmFjBtTNaNatTmFjBmFtTmFjBjctTtTtTtTtTtTtTtTtTtTtTtTjBmFtTtTtTtTtTtTtTtTtTtTtTtTtTmFjBtTtTtTtTtTtTtTySySDmySyScLySySySySDmySySDmySyStTYVJeJeJetTkJkJkJtTjBmFjBRnjBmFOzmFjBmFOzmFjBmFCBtTqGMjJEJEJETVJEJEMjJEJEqGtTVdVdVAaZaZaZaZaZaZQEVdVdKvVdzCVdzCVdzCzydedededetTMfmFCBtTjhjhjhjhjhjhgAQAYvGkSSJHsIGkJHYvrwormrukjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFyFAeAJAeAJAeAJAevDmFxRtTtTtTtTahipipkgtTxDmFSEtTpKaCpKliJuJuJuJuJutTIImFyFAeAJAeAJAeAJAeAJAevDmFxRtTivtTivtTivtTfkfktTivtTivtTivtTyyjBpetTtTtTtTtTtTtTDgjBmFtTNaNatTjBmFrEtTjBmFHPtTZyZyZyZyZyZyZyZyZyZytTyNjBtTNANANANANQRZNQNANANANAtTjBzJtTxUxUxUxUxUtTySySIuIuIuIukICDCHzsIuIuIuIuySyStTeGJeJeJetTkJkJkJzqmFjBmFtTtTtTtTjBmFjBtTtTtTtTtTtTweqGqGqGqGqGqGqGqGqGqGqGtTVdVdVdVdVdVdVdVdVdVdVdVdtTzRVdSosXzCVdTcdedededetTWHjBVxtTjhjhjhjhjhjhZppKGkYvpKobobobobpKrwDIkXNyzJtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPptTtTtTtTtTtTtTjljBWjuNVpbSGXipipipipGXyyjBPEtTpKURpKMKJuJuJuJuJutTgPjBPptTtTtTtTtTtTtTtTtTjljBmttTfkLKfkfkfkLKInfkLKfkfkfkLKfktTxDmFArVpuNVpuNVpuNVpyOmFjBtTNaNatTmFjBmFtTmFjBjctTZyZyZyZyZyZyZyZyZyZytTjBmFoVdgdgdgdgdgdgdgdgdgdgdgoVmFjBtTzDzDzDzDzDtTzsySDmySySDmySySySySDmySySDmySyStTOmJeUvUvtTkJkJkJzqjBmFjBGejBmFQTmFjBmFQTmFjBmFCBtTMjJEBRjmJEJEJEMjjmMjJEJEtTVdVdVdVdFaVdVdVdFaVdVdVdtTfOzCnjYIVdzCAKdedededetTMfmFCBtTjhpYjhjhpYjhgAtTXeoUoUXeXeXeXeoUtTtTUsnMjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFSEtTpKpKhxpKpKtTIImFjBmFjBmttTjZjZjZjZtTxDmFSEtTpKYBpKMKJuJuJuJuJutTIImFSEtTeObBbBIAbBbBeOtTIImFxRivfkfkfkfkfkfkfkfkfkfkfkfkfkfkivyyrEmFjBmFjBmFjBmFjBmFjBmFtTNaNatTKImFRFtTKImFnCtTZyZyZyZyZyZyZyZyZyZytTmFjBtTdgdgdgdgdgdgdgdgdgdgdgtTjBmFtTzDxUxUxUzDtTySySDmySySDmySySySySDmGSySDmySyStTSpgkUvUvtTkJkJkJtTmFjBmFjBmFjBmFjBoijBmFjBmFjByltTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTcZtTtTtTtTtTtTtTtTtTtTxvppzCVdjxVdybimdededetTWHjByltTtTtTtTtTtTtTLVNENEorDItTtTtTtTgAtTtTkXNymFtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPEtTpKSUpKSUpKtTYMAJAevDmFxRtTtTtTtTtTtTDgjBPptTtTqRtTtTubJuFFJuGRtTgPjBPEtTJPbBbBbBbBbBJPtTgPjBmttTfkOJfkfkfkOJfkOKOJfkfkfkOJfktTxDmFjBmFjBmFjBmFjBmFjBmFjBtTNaNatTmFjBmFtTmFjBjctTZyZyZyZyZyZyZyZyZyZytTtTtTtTdgdgdgWKWKWKWKWKdgdgdgtTtTtTtTzDzDzDIqzDNtySySIuIuIuIukICDCHzsIuIuIuIuySkItTtTtTtTtTtTtTtTtTtTjBmFQRnnqYiWqYiWqYiWqYnntImFskZFNeZFbvZFNeZFNeZFNeZFNeZFuNCYuNVpbStTEmImRoaVRoImEmtTDnHDeaPSVdzCnuSndeCkdetTMfmFEctTpKpKpKpKpKpKpKpKtTMahqYehqYehqxshqYeiQnMjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFSEtTpKpKpKpKpKtTtTtTtTjljBWjuNVpuNVpuNVpyOmFjsfcSgDPQttTdjJuJuJuJutTIImFSEtTALbBAVqbbBbBBttTIImFmttTivtTivtTivtTfkfktTivtTivtTivtTyyjBmFtTtTtTtTtTtTtTtTtTtTtTNaNatTjBmFjBtTjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZytTtTDCdgWKdgVQdgWKdgSRtTtTzDzDLjzDzDzDzDzDNtySySDmySyfDmySySySySDmySySDmySyStTjBmFQTmFjBmFjBGejBmFjByltTtTtTtTtTtTtTtTtTWHjBmFjBmFjBmFLymFjBmFjBmFjBmFjBmFjBmFjByltTJOpnJOpnJOpnJOtTtTtTtTtTtTtTtTtTtTtTtTtTWHjBkjtTpKQYpKQYQYpKQYpKtTAYmFjBmFjBmFbfioFHioaYzJtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPEtTkaUGILLDkatTyUyUtTIIoijBmFjBmFjBmFjBmFBBmFjBmFHPPEtTvqvqvqLJJutTgPjBPEtTbBbBbBOlbBbBbBtTgPjBmttTRAtTRAtTRAtTgGgGtTRAtTRAtTRAtTxDmFRFtTNaNaNaNaNaNaNaNaNaNaNaNatTmFjBmFtTmFjBjctTZyZyZyZyZyZyZyZyZyZyZyZyZyZytTdgdgdgdgdgdgdgdgdgtTtTMXNizDNizDNizDzDNtySySDmySySDmySySySySDmySySDmySyStTmFjBmFjBmFxkmFjBmFjBmFCBtTqJStHqgDpOEQKUtTphiWoZJSjBmFOzmFjBmFjBmFjBmFjBmFjBRnjBfMEYtTiiJOgaOBrZJOpntTZqZFNePbNeZFNeZFNeZFNePbHImFEctTpKpKpKpKpKpKpKpKtTEZjBmFOzmFjBmFjBmFjBRnjBtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFSEtTJuJuJuJuJuovJuJutTgPjBcByIkeyIkeyIkeyIkeyIkeAbjcactTtTtTtTtTcHtTYumFSEtTbBbBbBOlbBbBbBtTIImFRDtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTDgjBmFtTtTtTtTtTtTtTtTtTtTtTtTtTtTKImFjBtTjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTqwqwgVqwqwtTtTtTtTPeNtzDNtzDPKzDzDNtySySIuIuIuIukICDCHzsIuIuIuIuySyStTKImFjBmFOzmFjBmFjBmFOzylUApKpKpKpKpKpKpKtTtTtTtTMfmFjBtTtTtTtTtTtTtTtTtTtTtTtTmFjByltTepASJOpnJOpnJORHWHrEmFjBmFjBmFjBmFjBmFjBmFjBvLtTQYpKQYpKpKQYpKQYtTAYmFjBtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPEtTJucKJuJuJuJumnJutTIImFDftTtTtTtTtTtTtTtTtTtTEZHPveSgfcSgfcSgfcSgTOjBPEtTALbBbBqberbBBttTgPjBWjuNVpuNVpuNVpuNVpuNVpuNVpuNVpuNVpyOmFjBmFjBmFjBGejBmFjBGejBmFjBmFQTmFjBzJtTyNjBtatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTeMtTtTtTzDRpzDRpzDRpzDzDNtySySDmySySDmySySySySDmySySDmySyStTmFjBmFtTtTtTtTtTtTtTtTtTtTpKLGvHpKcIFMpKhTgDPPtTWHjBmFtTZyZyZyZyZyZyZyZyZyZytTKImFCBtTiiJOpnJOpnJOpntTMfmFQRiWqYnnqYiWqYnnqYiWqYnnJitTpKpKvnpKpKpKdnpKtTxJjBzJtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFSEtTKYJuJuJuJuJuJuGRtTgPjBkjtTKMKMkfKMKMuLKMKMtTAYjcjBmFjBmFjBmFjBmFjBonSEtTJPbBbBbBbBbBJPtTIImFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFpwmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFsDmFjBtTjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzDNtzDXIYyNtzDzDNtySySDmySySDmySDmPYySDmySySVvySyStTjBmFjBtTUhYnYnRzDapKYnYntTuSpKpKcDpKpKpKpKpKBjtTMfmFjBtTZyZyZyZyZyZyZyZyZyZytTmFjByltTvkpnLFLWxqpnvktTWHjByltTrNtTtTtTtTtTtTtTtTtTrNtTpKQYpKQYQYpKQYpKtTAYjWjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPEtTJuJuJuJuJuJuJuJutTIImFEctTUPUPUPUPUPUPUPUPtTxJHPGyKSXhKSXhKSXhKSNgjBPEtTeObBbBbBbBbBeOtTYMAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAevDmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFtTmFjBjctTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzDZJzDZJzDZJzDzDNtySySIuIuPFIuIuIuIuIuIuIuIuIuySkItTmFjBmFtTYnYnpKpKpKpKpKpKtTpKgBPupKvtEjpKqZFbpKtTWHjBmFtTZyZyZyZyZyZyZyZyZyZytTjBmFCBtTpnJOjPJOpnWopntTMfmFCBtTMrMbQvMbMroQMrMbQvMbMrtTpKpKpKpKpKpKpKpKtTEZjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFSEcHJuJuLJdjvqLJJuJucHgPjBkjtTHWwqOdHRUPWyQXHWtTAYjcRDtTtTtTtTtTtTtTmhmFSEtTtTtTbBbBbBtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTgPjBmFtTtTtTtTtTtTtTtTtTtTjBmFjBtTjBjWHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTMXzDjVzDzDzDfrzDtTzsySDmySdLDmySDmDmySDmySySDmySyStTjBmFjBtTYnDapKpKYnYtDaTjtTpKpKpKpKpKpKdnpKpKpKtTMfmFjBtTZyZyZyZyZyZyZyZyZyZytTmFjByltTJOYFcbCjcblpJOtTWHjByltTMrMbrRMbMrMbMrMbMrMbOrtTQYpKQYpKpKQYpKQYtTAYmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBPptTtTtTtTtTtTtTtTtTtTYumFEcJMUPUPUPUPUPUPUPUPJMxJHPmttTqlqlRbqlqltTyyjBmFIAbBbBbBbBbBbBbBbBbBIAbBbBbBbBIAIAbBbBbBbBIAbBbBbBbBIAbBbBbBbBtTYumFRFtTBdBdBdBdBdBdBdBdtTyNjBzJtTyNjBtatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzDzDFpzDzDFpzDzDtTySySySySdLTkySySySySySySySySySyStTmFjBmFtTTjpKYtUJpKpKjeYntTpKIHiNpKjwwkpKCIYmpKtTWHjBmFtTZyZyZyZyZyZyZyZyZyZytTjBmFEYtTdededeTEdededetTMfmFEYtTMrMbMrMbMrMbMrMbMrMbMrtTpKpKpKpKpKpKpKpKtTxJjBzJtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjsfcSgfcSgfcSgfcSgfcSgTOjBkjtTffQzkQUPNHKVwUfftTAYjcxRtTqlNIqlNIqltTxDmFjBbBbBbBbBbBbBbBbBbBbBbBbBmMerbBbBbBbBzIXgbBbBbBbBbBbBbBbBbBbBbBtTgPjBmFtTBdBdBdBdBdBdBdBdtTjBmFjBtTjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTRYtTtTtTtTRYtTtTtTtTtTMDqRtTtTqTqTqTqTqTqTqTqTtTtTKImFjBtTpKYnpKDapKTjYnYntTpKpKpKtcpKpKpKpKpKpKUAMfmFjBtTZyZyZyZyZyZyZyZyZyZytTmFjByltTdeLYdepgdeLYdetTWHjByltTMrMbMrMbMrMbMrMbMrMbMrtTpKQYpKQYQYpKQYpKtTAYmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFnimFjBmFjBmFjBmFjBmFjBmFjBDhEctTUPUPUPUPUPUPUPUPtTxJHPmttTqNqlqlqlGltTyyjBmFWcbBbBbBbBWcbBbBbBbBWcbBbBbBbBWcWcbBbBbBbBWcbBbBbBbBWcbBbBbBbBtTIImFjBtTBdBdBdBdBdBdBdBdtTmFjBmFtTmFjBjctTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzDzDYLzDzDYLzDYLjVzDzDYLzDDltTzlaqaqaqaqaqaqaqaqzltTmFjBmFtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTWHjBmFtTZyZyZyZyZyZyZyZyZyZytTKItsCBtTdeCkdeTEdeCkdetTMfmFCBtTMrMrQdMrMrCFMrMrcnMrMrtTpKpKpKpKpKpKpKpKtTEZjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBkjtTKMEPVCKMIYVCKMKMtTAYjcxRtTqlNIqlNIqltTxDmFSEtTkakakaILtTkakakaILtTkakakaILtTtTILkakakatTILkakakatTILkakakatTgPjBmFtTBdBdBdBdBdBdBdBdtTjBmFjBtTjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzDzDzDzDfrzDzDzDzDzDzDzDzDDlMDzlzlzlzlzlzlzlzlzlzltTjBmFjBmFjBmFxixixixixixixixiNeZFNeZFNeZFNeZFNeZFsrmFjBtTZyZyZyZyZyZyZyZyZyZytTmFjByltTtTtTtTtTtTtTtTtTWHjByltTtTtTtTtTtTtTtTtTtTtTtTtTQYpKQYpKpKQYpKQYtTAYmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBzJtTtTtTtTtTtTtTtTtTtTKImFDftTtTtTtTtTtTtTtTtTtTEZHPmttTqlNIqlNIqltTyyjBPEtTpKpKpKpKtTpKpKpKpKtTpKpKpKpKtTtTpKpKpKpKtTpKpKpKpKtTpKpKpKpKtTYujWRFtTtTtTtTtTtTtTtTtTtTyNjBmFtTyNjBjctTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzDzDFpzDzDFpzDFpzDzDzDFpzDDltTzlaqaqaqzlneaqaqaqzlkNmFrEmFjBmFjBxixixixixixixiximFjBmFpwmFjBmFjBmFjBfMjBmFtTZyZyZyZyZyZyZyZyZyZytTjBmFskPbNeZFNePbNeZFNePbsrmFskPbNeZFNePbNeZFNeZFNePbyctTpKgbpKpKpKpKadpKtTxJjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBZUjDjDjDjDjDjDjDjDFTmFjBBDwgWJwgWJwgWJwgWJwgWJKkjcxRtTqNqlqlqlGltTxDmFSEtTpKpKpKpKtTpKpKpKpKtTpKpKpKpKtTtTpKpKpKpKtTpKpKpKpKtTpKpKpKpKtTgPjBmFFTxixixixixixixixiZUjBmFjBmFjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTqRtTWezlzlzlzlzlzlzlzlBvtTjBmFjBmFjBRnxixixixixixixixiOzmFjBmFjBmFjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZytTmFjBmFjBmFjBDhjBmFjBmFjBmFjBmFjBmFjBmFHImFjBmFjBmFjBkjtTpKQYpKQYQYpKQYpKtTAYmFRFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFFTjDjDjDjDjDjDjDjDZUjBmFjBmFjBmFjBmFjBmFjBmFjBmFZgmttTqlNIqlBSqltTyyjBPEtTpKpKpKpKtTpKpKpKpKtTpKpKpKpKtTtTpKpKpKpKtTpKespKpKtTpKpKpKpKtTIImFjBZUxixixixixixixixiFTmFjBmFrEmFjBjctTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyantTzlzlzlOezlzlzlzlzlzltTtTtTtTtTtTtTxixixixixixixixitTtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZytTjBmFjBRnjBmFjBRnjBmFjBRnjBmFjBRnjBmFjBRnjBmFjBRnjBmFEctTpKpKpKpKpKpKpKpKtTEZjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBZUjDjDjDjDjDjDjDjDFTmFjBmFjBmFjBmFjBmFjBmFjBmFjBjcxRERqlqloYqlqlERxDmFSEtTkupKpKZPtTZPpKpKZPtTgUpKpKZPtTtTZPpKpKiGtTZPpKpKZPtTZPpKpKPrtTgPjBmFFTxixixixixixixixiZUjBmFjBmFjBmFHPtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyantTkWdMbWvfIQPVkybWsCXntTNaNaNaNaNatTxixixixixixixixitTNaNaNaNaNatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTqRtTtTtTtTtTtTtTtTtTtTtTmFjBkjtTtTtTtTtTtTtTtTtTtTAYmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTjDjDjDjDjDjDjDjDtTtTtTtTtTtTbEbEbEbEbEbEbEbEbEqdbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbEtTtTtTtTtTtTxixixixixixixixitTtTtTtTtTtTtTqRtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyantTtTtTtTtTtTtTtTtTtTtTtTNaNaNaNaNatTxixixixixixixixitTNaNaNaNaNatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZytTjBmFxPiPwgWJwgWJMPWJwgWJMPCVjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTjDjDjDjDjDjDjDjDtTBdBdBdBdtTZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZytTNaNaNaNaNatTxixixixixixixixitTNaNaNaNaNatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZytTmFnimFjBmFjBmFpwmFjBmFjBmFjBfMRFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTjDjDjDjDjDjDjDjDtTBdBdBdBdtTZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZytTNaNaNaNaNatTxixixixixixixixitTNaNaNaNaNatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZytTjBmFjBRnjBmFjBmFOzmFjBmFOzmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTjDjDjDjDjDjDjDjDtTBdBdBdBdtTZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZytTNaNaNaNaNatTxixixixixixixixitTNaNaNaNaNatTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTjDjDjDjDjDjDjDjDtTBdBdBdBdtTZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyxitTtTtTtTtTtTtTxixixixixixixixitTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -QrZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRqRqRqRqRqRqIqIqIqIqIqIqIqIqRqRqRqRqRqRanananananananananananananananananananananananananananananananananananananananananananananananananananqRqRqRqRqRqRCrCrCrCrCrCrCrCrqRqRqRqRqRqRanananananananananananananananananananananananananananananananananananananananananCrCranananananananananCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrZyZyZyZyZyZyZyZyZyanananananananCrCrCrCranananananananananananananananLkananananananananananananananananananananananananananananananananananananananananananQr -MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPDqcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPYK -MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUojDjDUoUojDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDcPcPcPcPcPDODODODODODODODOcPcPcPcPDODODOcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPDqcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPYK -MijDjDjDjDjDUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDDODODODODODODODODODODODODODODODODODODODODODODODODOcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPDODODODODODOEVDOcPcPcPcPcPDODODODODODODODODODODODOcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPcPDODODODODODOYK -MijDjDjDUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDqIjDjDUoUojDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDqIjDjDjDjDjDjDjDUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODOcPcPcPcPcPcPcPcPcPcPcPcPDODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODOcPcPcPcPcPcPDOcPcPcPDODODODODODODODODODODOYK -MijDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDqIjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUojDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MijDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoEoEoAWEoEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoEoEoBCBCBCEoEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoEoEoBCBTBTBTBCEoEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoEoBCBTDWDWDWBTBCEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoAWBCBTDWFNDWBTBCAWUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoEoBCBTDWDWDWBTBCEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoEoEoBCBTBTBTBCEoEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoEoEoBCBCBCEoEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoEoEoAWEoEoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVpVFPpVpVUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoHuHuZbHuHuUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVpVWpWpWppVpVUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoHuHuMnMnMnHuHuUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVpVNxWpWpWpQKpVpVYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZHuHuTsMnMnMnTDHuHuUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVWpWpQKWpUjWpWppVYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZHuMnMnUCMnVEMnMnHuUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoFPWpWpWpWpWpWpWpFPYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZZbMnMnMnMnMnMnMnZbUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVWpWpVVWpWRWpWppVYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZHuMnMnVEMnUCMnMnHuUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVpVUjWpWpWpVVpVpVYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZHuHuTDMnMnMnTsHuHuUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVpVWpWpWppVpVUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoHuHuMnMnMnHuHuUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUopVpVFPpVpVUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoHuHuZbHuHuUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOEVDODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODODOYK +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththththththtrBrBrBrBrBrBrBhththththththththtqRhththththththththththtZyZyZyZyZyZywYwYwYwYwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyKsKsKsKsKsKsKsKsKsKsKshthththththththththththththththththtZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtrGrGaVrGrGrGrGrBcncDcKcLcnrBrGaVrGrGrGrGrGrGrGdlaVrGrGrGrGaVrGrGrGrGhtZyZyZyZyZywYwYajCWajCWajwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyKsadcpadcpadcpadcpadKsNwMYNwMYMYMYMYMYMYMYMYMYMYMYMYMYMYhtZyZyZytTbzbzWxbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzWxbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzWxbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzWxbzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtrGrGrGrGrGrGrGrBVttBerwXcnrBrGrGrGrGrGrGrGrGrGdlrGrGrGrGrGrGrGrGrGeWhtZyZyZyZyZywYajCWCWCWCWCWajwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyKsJtwZQQwZQQwZQQwZgLKsMYIUMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYhtZyZyZytTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtrGrGfrrGrGrGeWrBgbhOerergrrBrGrGrGrGfrrGclMJMJvENbMJMJMJMJNbMJMJOnrGhtZyZyZyZyZywYwYCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRhththththththththththththththththtKscpadcpadcpadcpadlUATMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYhtZyZyZytTbzbzdededededededededededededededebzbzbzdededededededededededededededebzbzbzdededededededededededededededebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhththtyYyYyYyYyYyYgNgNyYyYrGrGrGrBgVhOhRergVrBrGrGrGUtUtUtvTjnUtUFzfzfzfzfzfzfzfjxKarGhtZyZyZyZyZywYajCWCWCWCWCWajwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFKscpJtwZQQwZQQwZwsMLKsMYMYMYhththththththththththtMYMYMYhtZyZyZytTbzbzdededededededededededededededebzbzbzdededededededededededededededebzbzbzdedededededfdvdvdvdfdededededebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZybEZyZyZybEZyZyhtNaNayYjVjVjVlCjVlLlLmnyYjxrGrGrBrBiTrBmyrBrBjxrGrGUtmHmMvOmMmMmHzfEiEiEiEimOzfrGKarGhtZyZyZyZyZywYwYCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFKsadcpadcpadcpadlUadKsMYMYMYhtNaNaNaNaNaNaNaNaNahtMYMYMYhtZyZyZytTYabzdedfpKpKpKdfdedededfpKpKpKdfdeGmtTfJdedededededemededededededededeGmtTfJdededededfdffefefedfdfdedededebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZybEZyZyZybEZyZyhtNaNayYmRlLOElLlLlLlLnbyYrGrGrGrGrGKaaVrGrGrGrGrGrGUtJvfMaFhSmMrqzfneVgkskskszfrGKarGhtZyZyZyZyZywYwYwYaNaNaNwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsJtwZQQwZQQwZQQWVMLKsMYMYMYUYUYUYUYUYUYUYUYhththtMYMYMYhthththttTbzbzdepKJefeJepKdededepKJefeJepKdeGmtTfJdededededededededededededededeGmtTfJdedededfdffhfmfmfmfhdfdfdededebzyrtTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththththththtcrhththththtNaNayYjVjVjVjVjVlLlLniyYrGrGclMJMJfCMJMJMJMJMJOneWUtnlmMhShSmMnxzfnCGzlIlIlIDrMJEarGhtZyZyZyZywYwYFVCWCWCWCWCWFVwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsadcpadcpadcpadlUadKsMYMYMYUYkBkBkBkBkBkBUYMYMYMYNwMYMYMYMYMYMYtTbzbzdepKJefmJepKdededepKJefmJepKdebzbzbzdededededededededededededededebzbzbzdededfdffeJeJeJeJeJefedfdfdedebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNaNaNahthtdYdYdYhthtNaNaNaNayYlLCqlLlLlLlLlLohyYjxrGKarGrGKafrrGrGrGrGKarGUtonozTBTBozmHzfPNrzkskskszfrGKarGhtZyZyZyZywYCWCWCWCWebCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsJtwZQQwZQQwZQQQQWAKsMYMYMYUYkBaEQbQbQbQbkisMsMsMsMswsMsMsMOOMYtTbzbzdepKJeJeJepKdededepKJeJeJepKdebzbzbzdededededededededededededededebzbzbzdededffpJeJeJeJeJeJeJegfdfdedebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNaNahthtdYdYdYdYdYhthtNaNaNayYZDSGUaUaUaUacsoTyYrGrGKaXYXYlnXYppXYXYjxKarGUtmHozTBTBozmHzfEiEiEiIEEizfrGKaeWhtZyZyZywYwYCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKscpadcpadcpadcpadlUKsMYMYMYUYkBbukBkBkBkBUYMYMYMYMYMYNwMYMYrFMYtTbzbzdedfJeJeJedfdedededfJeJeJedfdebzbzbzdededededededededededededededebzbzbzdededffhJegkJeJeJegkJefhdfdedebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNahthtdYdYdYdYdYdYdYhthtNaNayYjVjVjVjVjVlLlLqQyYrGrGKaXYrtrnrHrErtXYrGKarGUtUtUtUtUtUtUFzfzfzfzfzfzfzfjxKarGhtZyZyZywYCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKscpJtwZQQwZQQwZIWMLKsMYMYMYUYkBLAkBkBkBkBUYUYUYUYUYUYUYUYMYrFMYtTYabzdedfJeJeJedfdedededfJeJeJedfdebzbzbzdededededededededededededededebzbzbzdedfdfdfdfdfdfdvdfdfdfdfdfdfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNahthtdYdYdYdYdYdYdYdYdYhthtNayYmRlLPZlLlLlLlLnbyYrGrGrPXYrRpNrErErVXYrGKarGrGrGaVrGrGrGdlUOUDsDUDUDUDUOrGKarGhtZyZywYwYCWCWFVCWCWCWCWCWFVCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsadcpadcpadcpadlUadKsMYMYMYUYkBbukBkBkBkBkBkBkBkBkBkBkBUYMYrFMYtTbzbzdfdfJeJeJedfdedededfJeJeJedfdfGmtTfJdededededededededededededededeGmtTfJdedvJeJeJeJedfJeJeJeJeJeJedvdebzyrtTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhththtdYdYdYekdYdYdYekdYdYdYhthtyYjVjVjVtcjVlLlLtsyYjxrGKaXYtXzprEzptXXYrGKarGrGrGrGrGrGrGdlUOgpsevBeReRUOrGKarGhtZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhiCOhOhOhOhOhOhSFSFKsrlwZQQwZQQwZQQIWMLKsMYMYMYUYkBqsQbAyQbAyQbAyQbAyQbAyvpUYMYrFMYtTbzbzdfJeJeJegmdfpKpKpKdfgHJeJeJedfGmtTfJdededededededededededededededeGmtTfJdedvJeJeJeJedfJeJeJeJeJeJedvdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhththtdYdYdYeAhteUdYeAhteUdYdYdYhtyYyYyYyYyYyYgNgNyYyYrGrGKaXYtXueuOuStXXYrGMvMJMJMJMJMJMJMJvEWwHQKdvBeRuXUOrGKarGhtZywYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsadcpadcpadcpadlUadKsMYMYMYUYkBxTrhsSkBxTrhsSkBxTrhsSbuUYMYrFMYtTbzbzdfJeJeJegmdffefefedfgHJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfdfdfdfJedfdfdfdfdfdfdfdfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyoqoqhtdYdYdYdYdYeYdYdYdYeYdYdYdYdYdYhtrGrGaVrGrGrGvGolMJMJRRUdnynynynynynynynynynynyvanynyjxrGdlUOXAXAXAeReRUOrGKarGhtZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsJtwZQQwZQQwZQQjiYkKsMYMYMYUYkBkBZfkBkBkBZfkBkBkBZfkBbuUYMYrFMYtTbzbzdvJeJeJegmdfJefmJedfgHJeJeJedvbzbzbzdededededededededededededededebzbzbzdedfgXgXhaJegXhagXgXhagXgXdfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyoqcrdYdYdYdYdYdYdYvndYdYdYdYdYdYdYcrrGrGrGrGrGrGrGrGrGrGKarGnydndndnwedndndndnwedndndnnyrGrGdlUOUDUDUDsDUDUOrGKarGhtZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyqRSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKscpadcpadcpadcpadlUKsMYMYMYUYkBAQwoaokBAQwoaokBAQwoaobuUYMYrFMYtTbzbzdvJeJeJedfdfJeJeJedfdfJeJeJedvbzbzbzdededededededededededededededebzbzbzdedfhGJeJeJeJeJeJeJeJeJefedfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtdYdYdYdYdYekdYdYdYekdYdYdYdYdYhtrGrGfrrGrGrGrGfrrGrGKarGnyxkdnyfzIAcdndnAczIyfdnAunyrGrGASUOUOUOUOUOUOUOrGKarGhtZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyhthththtCpSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsNZQQwsQQwsQQwsQQBNspluCgMYUYAQxHxnxHxnxHxnxHxnxHxnMTbuUYMYrFMYtTbzbzdfJeJedfdfJeJeJeJeJedfdfJeJedfbzbzbzdededededededededededededededebzbzbzdedffmfmhMfmfmhMfmfmhMfmfmdfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththtdYdYdYeAhteUdYeAhteUdYdYdYhtFYFYuoFYFYFYFYFYFYFYrGKaeWnydndnfLumCsdndnAVtUDGdndnnyrGrGdlrGrGrGaVrGrGrGrGKarGhtZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyhtMYMYMYsjSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsXucpXucpXucpXucpXuKsMYByMYUYYskBkBkBkBkBkBkBkBkBkBkBbuUYMYrFMYtTbzbzdfJeJedfhVJeJeJeJeJehVdfJeJedfGmtTfJdededededededededededededededeGmtTfJdedfdfdfdfdfdfdfdfdfdfdfdfdfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhththtdYdYdYeYdYdYdYeYdYdYdYhthtFYbLbLbLbLbLvIEtEtFYrGKarGnyzwLZdnAVFmFFFmFmCsdndndnnyrGclvEMJMJMJMJMJMJMJMJtyeWhtZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyUNMYMYMYsjOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFKsKsKsKsKsKsKsKsKsKsKsMYByMYUYYskBkBkBkBkBkBkBkBkBkBkBbuUYMYrFMYtTbzbzdfJeJedfdfJeJeJeJeJedfdfJeJedfGmtTfJdededededededededededededededeGmtTfJdedfJeikJeJeJeiAJeJeJeikJedfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNahthtdYdYdYdYdYdYdYdYdYhthtNaFYbLbLbLbLbLFWGSGSFYjxKarGnydnWCAczIyfHIdnyfzIAcdndnnyrGKadlrGrGrGfrrGrGrGrGKarGhtZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyhtMYMYMYsjSFSFOhOhOhOhOhOhOhOhOhOhOhOhOhSFSFhtoqoqoqoqhtNwMYMYMYMYMYByMYUYYsaEQbAyQbAyQbAyQbAyQbAysSUYMYrFMYtTYabzdfJeJejkdfJeJeJeJeJedfjkJeJedfbzbzbzdededededededededededededededebzbzbzdedfJejNkblklrlGlGlkmDjNJedfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNahthtdYdYdYdYdYdYdYhthtNaNaFYHRHTInEtbLIqJhGSFYrGKarGnydnWCAVBBCsHIdnAVBBCsdndnnyjxKadlPXPXPXPXPXPXPXjxKarGhtZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyhtMYMYMYCpSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFhtoqoqoqoqhtMYlEMYMYMYMYByMYUYYsxTrhsSkBxTrhsSkBxTrhsSkBUYMYrFMYtTbzbzdfJeJeJedfdfdvdfdvdfdfJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfocjNoydfoApzpAdfoyjNpRdfdebzyrtTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNaNahthtdYdYdYdYdYhthtNaNaNaFYKHFWKXLjLyyQMyMyFYrGKarGnydnWCFEvxFmBBFmFmBfCRdnAunyrGKadlPXMXNHOeNHMXPXrGKarGhtZywYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyZyZyZyZyhtMYMYMYqRSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFSFhtoqoqNPoqhtMYvjJClululuydMYUYbMPoZfkBkBkBZfkBkBkBZfkBkBUYMYrFMYtTbzbzdfJeJeJedfdfdedededfdfJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfJejNoydfdfdfdfdfoyjNJedfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNaNaNahthtdYdYdYhthtNaNaNaNaFYfAFWLjLjLyKHbLnTFYrGKaeWnyxkWCyfzIAcHIdnAczIyfdndnnyrGuWvEOrapOKOKOKOKPXrGKarGhtZywYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyhtMYMYIUEgSPSPSPSPSPSPSPSPSPSPSPSPSPSPSPSPhthtPDPDSuPDhtMYByMYhththththtUYYsKCwoaokBAQwoaokBAQwoaokBUYMYrFMYtTbzbzdfJeJeJedfdedededededfJeJeJedfbzbzbzdededededededededededededededebzbzbzdedfJepUqFlrlGlGlGlrrWsbJedfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhththththththtmFpwmFFYFYFYFYFYFYFYPePKPYQdPKRYbLbLFYjxKarGnydnUiVvWoVvVvFmVvWoCsdndnnyrGKadlPXXMXgOKOKOKPXrGKarGhtZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyUNNwMYNwemOIOIFwOIOIOIGImBGImBGImBGImBGISPMYMYMYMYaOMYMYMYByMYMYMYXTObBbmgIGsdxnxHxnxHxnxHxnxHxnMTkBUYMYrFMYtTABbzdfshshshdfdedededededfshshshdfGmtTfJdededededededededededededededeGmtTfJdedfshshsHsQJeJeJesQthshshdfdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtNaNaNaNaNahtpwmFpwFYbLbLEtEtbLHRPKPKYlbLbLEtEtbLFYrGKarGnynyYynynynynynynynynynynynyrGKadlPXXMOKOKOKOKPXrGKarGhtZyZywYwYCWCWFVCWCWCWCWCWFVCWCWwYwYZyZyZyZyZyZyZyZyhtIUMYMYEgOIOIOIOIOISPZQiZgSiZgSiZgSiZgSlNluENluluUMJyJyJyMoJyJyJyurHEMYUYkBkBkBkBkBkBkBkBkBkBkBkBkBUYMYrFMYtTRebzdfdfdfdfdfdedededededfdfdfdfdfGmtTfJdededededededededededededededeGmtTfJdetLtRtRtRtYdvdfdvuCtRtRtRuVdebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRhthththththththththththththtRWRWRWRWRWRWRWRWRWRWmFpwmFFYzngFZgZgLyKHbLbLKHbLFWLjLjLyFYrGKarGaVrGkFrGrGrGaVrGrGrGrGrGrGrGrGKaASPXXMOKYfZxZxPXjxKaeWhtZyZyZywYCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyhtMYMYMYEgOIOISPkRADSPEGmBGImBGImBGImBGISPMYByMYMYMYMYMYMYMYMYMYMYByyPNwUYUYUYUYUYUYUYUYUYUYUYUYUYUYUYMYrFMYtTHzbzdedfdfdfdedededededededfdfdfdebzbzbzdededededededededededededededebzbzbzdevdvdvdvdvddededevdvdvdvdvddebzyrtTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRpwGepwmFpwmFpwmFpwmFpwmFpwmtRWfkfkfIfIfIfIfkfkRWxDmFpwFYbLVlZgrOLyKHEtEtqxbLFWoeLjLyFYjxEfTrTrTrPxrGrGrGrGrGrGrGrGrGrGrGrGKadlPXhcOKZxAMAMPXrGKarGhtZyZyZywYwYCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyhtMYMYMYEgOIOISPkRADSPCNGImBGImBGImBGImBSPMYByMYfRfRfRfRfRfRfRfRfRByyPMYhtNahtMYMYMYMYMYMYMYMYMYMYMYMYNwrFDuhXHzbzdededededededededededededededebzbzbzdededededededededededededededebzbzbzdededededededededededededededebzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRmFmZmFpwmFpwmFpwmFpwmFpwLsxRivfkwNiIiIiIiIfkfkivyypwmFFYbLAwMyeHynhQGSGgFgHRHTXdMybLFYrGjEMJNbMJuZMJMJMJNbMJMJMJMJMJMJMJMJUddlPXGQOKknAMVwPXrGKarGhtZyZyZyZywYCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyhtMYMYMYEgOIOISPkRADSPUmmBGImBGImBGImBGISPMYByMYfRQWQaQaQaQatrQafRByyPMYhtNahtMYMYMYMYMYMYMYMYMYMYMYMYMYrFMYhXHzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRpwmFyFAeAJAeAJAeAJAeAJCKpwmtRWjtfkRWRWRWRWfkjLRWxDmFpwFYFKAwbLbLbLGYGSGSLyKHQlbLbLbLFYrGkFrGazazazazazazazrGrGrGPXPXPXPXPXPXUTPXXgOKZxAMAMPXrGKarGhtZyZyZyZywYwYFVCWCWCWCWCWFVwYwYZyZyZyZyZyZyZyZyZyZyUNMYMYMYemINOISPkRADSPmBGImBGImBGImBGImBSPMYByMYfRQaQaBXQaQaQaQiUAduyPMYhtNahtMYvjlululululuuYWQWQWQWQrJPzJCVbNsfdSdbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzORbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzORbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzbzORbztTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRmFpwPEYwYwYwYwYwYwYwYwYumFxRRWfkfkfIfIfIfIfkfkRWyypwmFFYCMfYlblbmUIoDiDimNcdmNmNmNmNqeypJlrGazJLygIeygJLazrGrGrGPXNCsNhfoSabcfPXOKOKZxZxZxPXrGKarGhtZyZyZyZyZywYwYwYiViViVwYwYwYhthththththththththththtMYMYMYEgSPSPSPSPSPSPSPSPSPSPSPSPSPSPSPSPMYByMYfRQaLhQaQaQaQagdfRByyPMYhththtMYByMYRERERERECiREREREREREREREREREREHzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTtTtTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTtTtTbzbzbzbzbzbzbzbzbzbzbzbzbzbzbztTtTtTVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRpwmFSEYwJrYwkJkJlmkJYwgPpwmtRWkcMHgIgIgIgIMHiDRWxDmFpwFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYrGtwMJJQoNJLJLJLJLJXrGrGrGPXGtsNyAHlXWtuPXOKXgOKOKOKPXrGKarGhtZyZyZyZyZyZyZywYCWCWCWwYZyZyhtNwMYMYMYMYMYMYMYMYMYMYMYMYMYsjMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYNwByNwfRQaQaQaQaQaLhgdfRoHHjlululululuHGNwREIXIXIXCnkAkAkAKfFsEBdUfyEBREhgvJvhvJvhvJvhvJvhvJvhvJvhvJvhhtoqhtvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhhtoqhtvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththththtqRmFpwPEYwkJYwmorruTziYwIImFxRRWjtfkRWRWRWRWfkLORWyypwmFpwGepwmFpwmFpwmFpwmFQTmFugrGrGaVrGKarGaznaygrKygEvazrGrGeWPXNCsNyAHlXWBiPXOKOKOKXgOKPXrGKarGhtZyZyZyZyZyZyZywYCWCWCWwYZyZyhtMYzevjlulululululululuevlulumGlulululululululululululugRlulululuduMYfRtrQaQaQWQaQaIBfRMYPLKbKbKbKbKblhMYRElZIXIXIXIXIXIXEWdUWSNRdUgiREVYvhvQvhvJvXvJvhvJvXvJvhvQvhvJhtoqhtvJvhvQvhvJvXvJvhvJvXvJvhvQvhvJhtoqhtvJvhvQvhvJvXvJvhvJvXvJvhvQvhvJhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwGepwmFpwjcpwmFSEYwzqYwkJAouTziYwgPpwmtivfkfkfIfIfIfIFiWsqXoFLoKuWfKuWfKuWfKuWfKuWfKuhuKuQZMJMJMJMJUdeWazJLJLJLJLJLazrGrGrGPXzVzVvifPzVZjPXOKOKOKOKOKPXrGKarGhtZyZyZyZyZyZyZywYdWdWdWwYZyZyhtMYMYrSMYMYMYMYMYMYMYMYByMYMYMYMYMYMYMYMYMYMYMYMYMYMYMYByMYMYMYMYByjYfRGqnWnWnWnSnWUwfRMYMYMYMYMYMYNwUuMYRESfIXIXIXIXIXIXEWhvfygiDUEBREhgwmhtGcsZhtwAilwChtsZGchtwMvhhtoqhtvhwmhtGcsZhtwAcUwChtsZGchtwMvhhtoqhtvhwmhtGcsZhtwAEewChtsZGchtwMvhhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmFpwmFHPmFpwPEYwkJlmkJAouTziYwIImFxRRWfkfkiIiIiIiIfkfkRWyykxGyKSXhKSXhKSXhKSXhKSNgpwmFugrGrGfrrGrGrGazJLJLJLJLJLazrGrGrGPXXWzFXWXWzFBiGxNHMXUUssMXPXjxKaeWhtZyZyZyZyZyZyZyhtmFpwmFhtZyZyhtMYMYByFjFjFjFjFjFjEqEqOUEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqOUEqEqEqMYByMYfRQaQaBXQaQaQagdfRfRfRfRfRfRfRMYpbOXTIFDLTwIIXIXIXIXEWIXIXIXIXNRRErXvhvJvhvJvhbcvhwPvhvJvhvJvhwmhtoqhtwMvhvJvhvJvhMpvhaJvhvJvhvJvhwmhtoqhtwMvhvJvhvJvhhWvhhWvhvJvhvJvhwmhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFyFAeAJoXAJDHSsYwBZkJBZYwYwYwYwjlpwmtRWRWRWRWRWRWRWRWRWRWmhqmxRhththththththththtmhmFRFhththththththtaznaygrKygEvazrGrGrGPXPXPXPXPXPXUTPXPXPXPXPXPXPXrGKarGhththththththththtKImFRFhtZyZyhtMYMYByFjslslslslFjyLQjCvcuHodpcuEzHoEzEzEzHoEzEzEzHodpzUcuHoEqMYByMYfRdVQaQaQaQaQagdVcQaQaQaQaQafRMYByMYREIXIXpIIXIXIXIXEWdUfyEBgKgiREhgwmhtGcsZhtwAqhwChtsZGchtwMvhhtoqhtvhwmhtGcsZhtwASLwChtsZGchtwMvhhtoqhtvhwmhtGcsZhtwAEewChtsZGchtwMvhhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPEYwYwNrYwYwYwYwYwCeYwYwiyusfcaQmFArCYuNVpuNVpuNVpuNVpiYXXkxmthtCuFrTCHJFrqyTChtyypwmFhtNaNaNaNaNaNaaznJJLJLJLJLazrGrGrGaVrGrGrGrGaVdlrGrGrGrGrGrGaVrGKarGaVrGrGrGaVrGrGrGRhmFpwmFhtZyZyhtMYMYByFjQOQOQOQOFjZRjoNDpLpWhjNDdpmJcuHodpmJcuHodpmJhjHoIVAaEqMYByMYfRQaLhQaQWQaBXgdQatrQaQaQWQafRMYByMYREIXIXpIIXIXIXIXEWhvUcNRhvEBRELzvhwWvhvJxrvJvhvJxrvJvhwWvhvJhtoqhtvJvhwWvhvJxrvJvhvJxrvJvhwWvhvJhtoqhtvJvhwWvhvJxrvJvhvJxrvJvhwWvhvJhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFSEYwAFqVAFAFAFtStStStSYwIILspwmFpwmFpwmFpwmFpwmFpwYxKuWfKuxIxRhtWFEXEXEXEXufywhtxDmFpwhtNaNaNaNaNaNaazJLygZwygJLazrGrGrGrGrGrGrGrGrGdlrGrGrGrGrGrGrGrGKarGrGrGrGrGrGrGrGrGRhpwmFRFhtZyZyhtMYMYTgXkuMhyhyhyFjyLhjeohjNDpLeofgHoIVmJfgHoECiuONHoIVmJcuHoEqMYByMYfRQaQaVKQaQaQagdQaQaVKQaQaQafRMYByMYREowLTZcLTLTLTwIOvFsgihvfygiREvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhhtoqhtvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhhtoqhtvhvJvhvJvhvJvhvJvhvJvhvJvhvJvhhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththththththththththththththththththtmFpwPEYwpEedtStStStStStStSYwgPpwGyKSXhKSXhKSXhKSXhKSNgkxGyKSXhWrcvhtFrywywywywKrywhtyypwmFhththththththtazazazazazazazrGfrrGrGclMJMJMJNbvEMJMJMJMJmXMJNbMJfCMJNbMJOnrGfrrGrGrGRhmFpwmFhtZyZyhtMYMYByFjpkhyhyhyFjEzcRNDpLeoAaNDIVpWcuHopLhjcRHoIVpWcuHopLhjEqMYByMYfRQatrQaQadVQagdQadVQaQaLhQafRMYByMYREUWEdEdEdEdEdUWREREREREREREREoVoVhththththththththththtoVoVhththtoVoVhththththththththththtoVoVhththtoVoVhththththththththththtoVoVhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmFQTmFpwmFpwmFQTmFpwmFpwmFQTmFpwDxKuWfMuVkDLedtStStSaPeLWnhAYwIImFRDPjPjPjPjPjPjPjPjPjxDqmRDhthtPkhthtTCywywywywKrywhtxDmFpwmFQTmFpwmFpwmFpwmFQTmFbebebebebebebeTfbehtDZDZgtDZDZDZOWCdDZDZrGKarGoWoWGFoWoWoWKwoWoWpwmFpwhtZyZyhtMYMYByFjLgQOQOQOFjyLiuwjAaNDEzEzEzNDIVmJAaNDIVAaEzNDIVmJAaNDEqMYByMYfRVcQaQaQaQaVKgdQaQaQaQaQaQafRMYByMYREWDdUEBIXdUEBWDREpwmFpwGepwYNNeZFNeZFbvZFNeZFNeZFbvZFNeZFNeZFbvZFNeZFNeZFNeZFNePbNeZFNeZFNeZFNeZFbvZFNeZFNeZFNeZFNePbNeZFNeZFNeZFNehtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwBapwmFpwmFpwmFpwmFpwmFpwmFpwmFpwpHkxmFpwPEYwnYedtStStSbxNjAUkdYwgPpwmtPjkZTvBmHCigTvkZPjyykxmthtoDKroDhthtywywAkywKrywhtyypwmFpwBapwmFpwmFpwmFpwmFpwbeDzqCoJofztYgRGlahteugYZvSzqfriSAKNHgDZrGKarGoWoikPDhDhDhDhmIoWmFpwmFhtZyZyhtMYMYByFjslslslslFjEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqMYByMYfRfRfRfRfRfRQagdtrQaQaBXQaQafRMYByMYREhvYSNRIXNRXagiREmFWvmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwLspwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwpipwmFpwzJhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwGyKSXhKSXhKSXhKSXhKSXhKSXhKSNgpwKqAJDHSsYwNSFLvytStSbxAUPANjYwIImFxRPjaxaxaxaxaxaxaxPjxDqmxRhtywKrywywhthtywywywKrjjhtvmXhKSNgpwMOVBucVBucVBjFKudFbeoJoJoJofuxYgfiSBhtQHgYZvgYZoSASAKNMcDZjxKaeWoWoikPoiDhmIDhmIoWKImFRFhtZyZyhtMYMYByFjFjFjFjFjFjDsySySySySVuySySySySySySVuySySySySBcpwmFpwmFpwqmpwmFQTmFpwmFfRLhgdQaQaQaQaQaVcfRMYByMYREdUfygiIXhvfyEBREpwmFXqftKSXhKSXhKSXhKSXhKSXhKSXhJdNgpwaToZiWqYiWqYiWqYiWqYiWqYiWoZiWqYiWqYiWqYbNeXlteXlteXeZqYiWqYiWoZJSpwmFOzmFpwhtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFRDXfXfXfXfXfXfXfXfXfXfXfXfXfmhmFAzhththtYwKWIhvytStSUlkdJZqWYwgPpwmtreaxaxaxaxaxaxaxreyykxmthtywKrywHOywhthtywywKrywhthththtxDmFfTBFBFBFBFBFmhmFQsbemkjXjXjXIcIcgsgzhtruAAhnAAKAhlhlsUKyDZrGKarGoWoikPoiDhmIDhmIoWmFpwmFhtZyZyhtMYMYByAgjyjyjyjyAgDsySySDmySySDmySDmDmySLaySySDmySySKhmFpwmFpwmFkCWfKuWfKucOKuUAnWXZQaVcQaRqQaQafRMYByMYRENRdUlQIXcMEBNRREmFpwmtuHuHuHuHuHuHuHuHuHuHcZuHuHuHxDmFCBhththththththththththththththththththtgAhththththeiJiShthththtMfmFpwhthththtZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmtXfuDuDMguDuDuDuDuDMguDuDXfyypwAshtNaNaYwHnIhvytStSbxNjAUkdYwIImFxRPjTRaxkrtnYYaxMqPjxDqmxRhtwFzKywywywywhthtvZKrvZhtNaNahtDgpwAjBFyelXzaBFyypwqmbeDzBUoJfapTYgVqFChtojojrcojQLSASALwgwDZrGKarGoWoikPoiDhmIDhmIoWpwmFpwhtZyZyhtMYMYByAgFQFQFQFQAgDsySySIuIuIuIuIuIuIuIuIuIuIuIuySySRnpwmFpwmFpwmFpwmFOzmFpwmFfRQaQadVQaQaQaQaQafRMYByMYREhvgihvfygihvgiREpwmFRDuHVdVdVdVdLxVdVdLxVdVdVdVduHyypwVxhtNaNaNaNaNaNaNaNaNaNaNahtjhlvjhjhlvlRgAhemfnznzqkqkqknznzhthtWHpwzJhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFxRXfuDhdhdhdhdhdhdhdhdhduDXfxDmFmdhththtYwYwNrYwYwYwYwYwYwYwYwgPpwmtPjHkyhWGFBWGaxXxPjyykxmthtywywywywywywTChthtPkhththththtxDmFrgBFzayGyBBFxDmFkxbebebebebebebebebehtLRLRplLRXLSASASAgwDZrGKarGoWoikPDhDhDhDhmIoWmFpwmFhtZyZyhtMYMYByAgFQJBJBJBAgDsySySDmySySRiySDmDmySDmySySDmySySDsDsDsDsDsDsDsDsDsDspwmFpwfRQaBXQaQaQaVKQafRfRMYByMYREREREREREREREREREmFpwmtuHVdVdVdVdVdVdVdVdVdVdVdVduHxDmFCBhtNaNaNaNaNaNaNaNaNaNaNahtjhtktkyiyTDpDIDMGkJHJHSSSSSSYvoboqoVMfmFpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmtXfuDhdhdIThdhdhdhdhdhduDXfyypwSySgfcSgPCSgDPSgfcSgfcSgfcSgPCaQmFxRPjfwErWGtnWGaxmcPjxDqmxRhtywLPywywywywFrhtMttqwDizwDizwDlWKulFBFyGyeyGBFyypwqmpwmFpwmFpwmFpwmFpwhtgYgYZvgYqfSASASAKyDZrGKarGoWoikPoiDhmIDhmIoWpwmFpwhtZyZyhtMYMYTgBJtzJBJBJBAgDsySySySySySySySySySySySySySySySySDslOhrXclOlOXclOlODsmFpwmFfRQaQaQaQaQaQaQafRGepwdPKuWfKuWfooWfKuWfKuAiKuWfxALCykESFhaZaZaZaZaZaZGJVdVduHDgpwylhththththththththththththtjhjhjhoujhpmhtQAIjiqjgSSSSSSsIobrwiSWHpwmFhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFxRXfnghdhdhdhdIThdhdhdhdCaXfxDrkkxmFWvmFpwmFHPmFpwmFpwmFpwmFpwmFWvmtPjzjErYYGZkraxTdPjyykxmthtTCFrqyHJTCFrCuhtyypwmFpwmFpwmFpwpixRBFyByBzNBFxDmFkxpHpwmFpwmFpwmFpwmFhtQHgYZvgYjOSAXOSAMcDZjxKaeWoWpGtCoiDhmIDhmIoWyNpwzJhtZyZyhtMYMYByAgjMFQFQFQAgDsySySfHySySDmySySySySDmySySDmySySDslOlOHalOlOwSlOlODYpwmFpwfRQaQaQaLhQaQaQafRpwLskxmFpwmFpwmFpwmFpwmFpwmFpwmtuHVdZMNvJxscJxJxscJxxlVdVduHxDmFskPbNeZFNeZFNeZFNePbNeZFuqhtHFtktkgqjhExhtQAYvsTsIGkSSSSJHyzhBgAMfmFpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmtXfuDhdhdhdhdhdhdIThdhduDXfunKSzcNfWfTiOpWTtpWTPsWTPsWTPsWTOpldbhxArCrxOtrxrxrxrxrxrCoFrfRDhththththththththtxDmFXqXhKSXhKSNgpwmtBFzayGyeBFunKSqopwmFpwmFpwmFpwmFpwhteugYZvcmqfnHSCSCEwDZrGKarGoWoiDhDhDhDhDhmIoWpwmFpwhtZyZyhtMYMYByAgjyjyjyjyAgDsySySIuIuIuIukICDCHzsIuIuIuIuySySBIlOlOBIlOlOSplOlODsmFpwmFfRdVQaQaQaQaQaQafRmFpwxhoZiWqYiWoZiWqYiWqYnnqYiWBguHVdZMNvJxJxJxJxJxJxxlVdVduHyyVfmFpwmFpwmFpwmFpwmFpwmFcyVxhtjhjhjhoujhpmhtQASSJHJHJHSSSSJHyzhBgAWHpwzJhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFxRXfuDhdhdIThdhdhdhdhdhduDXfXfXfXfDgpwPpqLqLKGqLqLqLqLqLqLcHqLgPkxmtPjaxaxaxaxaxaxaxPjyykxWjuNVpuNVpuNVpuNVpuNXXpwpehthththtmhmFRDBFKoFlYbBFBFBFlHmFRFhthththtyNpwzJhtDZDZgtDZDZDZDZDZDZDZRhgCRhoWoWoWoWoWoWoWoWoWmFpwmFhthththtMYMYByAgAgAgAgAgAgDsySySDmySySDmySySySySDmySySDmySySBIlOlOSplOlOBIlOlODspwmFpwfRQaQaQaQaQaVcQafRpwmFdahththththththththththththtuHVdZMNvJxJxJxJxJxJxxlVdVduHnGnnqYiWqYiWqYiWqYiWqYnnpwmFCBhtjhhthtgAhththeWBoqjgJHYvGkSSIjIjhBgAMfmFpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmtXfuDuDixuDuDuDuDuDuDixuDXfbqbqXfxDmFSEqLkobYkoMKJuJuJuovJuqLIIqmxRPjkZiUigHCBmiUkZPjxDBwpwmFpwmFpwmFpwmFpwmFpwBaxRhtNaNahtyypwmtBFHrLLQSQSQSdRaRpwmFhtNaNahtpwmFpwmFpwmFlzmFpwmFpwGepwmFpwqmQTmFpwmFpwmFpwGepwmFpwmFpwmFpwGepwmFpwqmpwmFpwmFQTmFKhySySDmySySDmySySySySNVySySDmySySBIlOlOwSlOlOHalOlODYmFpwmFfRfRfRfRfRfRfRfRfRmFpwqMhtMjJEAHMjJEJEJEJEQxBRJEJEuHMeOxNvJxJxxQJxJxJxxlVdVduHhthththththththththththtWHpwylhtjhjhjhoujhYWgAQASSSSIjsIobGkJHJHhBgAWHpwmFhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththtpwmFRDXfXfXfXfXfXfXfXfipipXfXfXfipkgXfyypwPEqLkoURkoMKJuJuJuJuJuqLgPkxpePjPjPjPjPjPjPjPjPjyykxGyKSXhKSXhKSXhKSXhKSXhKScvhtNaNahtxDmFxRBFpSNzpSpSPnBFxDmFpwhtNaNahtmFcymFpwmFpwjcpwmFpwmFpwmFpwmFkxLspwmFpwmFpwmFpwmFpwmFmZmFpwmFpwmFpwpHxYWfKuWfKuWfKuCbcJySIuIuIuIukICDCHzsIuIuIuIuySySBIlOlOCXlOuRCXlOlODspwmFpwGepwmFQTmFpwmFpwGepwmFCTElQJqGqGdOqGqGqGqGeJqGqGqGuHVdZMNvJxJxJxJxJxJxxlVdVduHRLrMACjSRtzCnuSnOhCwOhhtMfmFCBhtjhjhjhogyTDXorWBGkSSJHJHJHYvobobrwiJIFmFpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwGepwmFpwWjiYVpuNVpuNVpbSXfiwLqLqLqpMipipXfxDmFSEqLkoaCkoiBJuxNJuJuJuqLIIqmArVpuNVpuNVpuNVpuNVpyOqmRDHYHYHYHYHYHYHYHYHYHYHYHYHYHYHYHYyypwmtBFKFoCpSpSPnBFyypwmFhtNaNahtpwmFpwmFpwmFHPmFpwmFpwmFpwmFpwBrKuWfaHWfKuWfKuWfKuexKuWfKuexKuWfKuexKuibOzmFpwmFOzmFKhatySDmySySDmySySySySDmySySsgySySDsDsDsDsDYDsDsDsDsDsyNpwmFpwmFpwmFpwLspwmFpwmFpwylhtISJEMjJEJEMjJEJEBRJEMjqGuHVdZMNvJxgOJxJxgOJxxlVdVduHrMRLzCbHzCACybZLOhOhOhhtWHpwylhtbXymymymymSIgAQAIjSSYvobjgSSIjIjhBgAkXpwmFhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFbnmFpwmFpwmFpwmFpwmFpwmtXfipipzmipEnipipXfyypwPEqLGjaCkoILJuJuJuJuGRqLgPkxmFpwmFpwmFpwmFpwmFpwmFbJmtHYxZHYxZHYxZHYOZOZHYxZHYxZHYxZHYxDmFxRBFpSpSSJpSpSwKxDmFpwhtNaNahtmFpwmFhththtqRhthththththththtdgdgdghtpwmFGHGHGHGHGHGHGHGHGHGHGHGHGHmFkxDsDsDsDsDsDsDsatySDmySySnLySySySySDmySySDmySySDsYVqBqBqBhtzdzdzdhtpwmFpwNUpwmFOzmFpwmFOzmFpwmFCBhtISMjJEJEJETVJEJEMjJEJEqGuHVdZMVAaZaZaZaZaZaZQEjRykKvkUzCACzCACzCzyOhOhOhOhhtMfmFCBhtjhjhjhjhjhjhgAQAYvGkSSJHsIGkJHYvrwormrukpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFyFAeAJAeAJAeAJAevDmFxRXfXfXfXfahEnipkgXfxDmFSEqLkoaCkoliJuJuJuJuJuqLaIbKyFAeAJAeAJAeAJAeAJAevDqmxRHYNWHYNWHYNWHYqiRIHYNWHYNWHYNWHYyypwpeBFBFBFBFBFBFBFDgpwmFhtNaNahtpwmFpwhtNaNaNaNaNaNaNaNaNaNahtdgdgdghtyNpwGHNANANANANQRZNQNANANANAGHpwQMDsxUxUxUxUxUDsatySIuIuIuIukICDCHzsIuIuIuIuySySDseGqBqBqBhtzdzdzdCGmFpwmFhthththtpwmFpwhthththththtIJqGqGeJqGqGqGqGdOqGqGqGuHVdFypZykykykykykykykqaVduHzRACSosXzCACTcOhOhOhOhhtWHpwVxhtjhjhjhjhjhjhZpoqGkYvoqoboboboboqrwDIkXNyzJhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPpoKoKoKoKoKoKoKjlpwWjuNEITzmELqfbipipGXyypwPEqLkoURkoMKJuJuutJuJuqLgPkxPpTeTeTeTeTeTeTeTeTejlkxmtHYRILKRIRIRIBzxLRILKRIRIRILKRIHYxDmFArVpuNVpuNVpuNVpyOmFpwhtNaNahtmFpwmFhtNaNaNaNaNaNaNaNaNaNahtDCdgSRhtpwmFDNnOnOnOnOnOgZiLiLiLiLiLgjWfbgDszDzDzDzDzDDsLlySDmySySDmySySySySDmySySDmySySDsOmqBUvUvhtzdzdzdCGpwmFpwGepwmFQTmFpwmFQTmFpwmFCBhtMjJEBRjmJEJEJEMjjmMjJEJEuHVdVdZMVdFaVdVdVdFaVdVdVduHfOzCnjYIACzCAKOhOhOhOhhtMfmFCBhtjhpYjhjhpYjhgAhtXeoUoUXeXeXeXeoUhthtUsnMpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFSEoKQmQmhxQmQmoKIILspwmFkxmtXfjZjZjZjZXfxDmFSEqLkoYBkoMKJuJuJuJuJuqLIIqmSETeeObBbBIAbBbBeOTeIIBrxALrteteteteteteDoRIRIRIRIRIRIRINWyyVfmFpwmFpwmFpwmFpwmFpwmFhtNaNahtKImFRFhtNaNaNaNaNaNaNaNaNaNahtdgdgdghtmFpwGHnOnOnOnOnOVUnOnOnOnOnOGHpwmFDszDxUxUxUzDDsatySDmySySDmySySySySnFySySDmySySDshhXDUvUvhtzdzdzdhtmFpwmFpwmFpwmFpwmFpwmFpwmFpwylhththththththththththththtuHuHuHdduHuHuHuHuHuHuHuHuHuHxvACzCACxBACybimOhOhOhhtWHpwylhththththththtLVNENEorDIhthththtgAhthtkXNymFhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPEoKQmSUQmSUQmoKYMAJAevDqmxRXfXfXfXfXfXfDgpwPpqLqLKGqLqLubJuJuJuGRqLgPkxPETeJPbBbBbBbBbBJPTegPpwmtHYRIOJRIRIRIOJRIRIRuRIRIRIOJRIHYxDmFpwmFpwmFpwmFpwmFpwmFpwhtNaNahtmFpwmFhthththththththththththtdgdgdghththtGHnOnOnOWKWKBGWKWKnOnOnOGHhthtDsIgKBKBKBKBGUdyySIuIuIuIukICDCHzsIuIuIuIuySkIDshththththththththtpwmFQRnnqYiWqYiWqYiWqYnntImFskZFNeZFbvZFNeZFNeZFNeZFNeZFuNCYuNeTbShtEmImRoImRoImEmhtDnHDeaPSACzCnuSnOhCkOhhtMfmFEczMlPlPlPlPlPlPlPlPzMMahqYehqYehqxshqYeiQnMpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFSEoKQmQmQmQmQmoKoKoKoKjlkxWjuNVpuNVpuNVpyOmFjsfcSgDPQtqLdjKcKcKcPtqLIIqmSETeALbBbBqbbBbBBtTeIImFmtHYNWHYNWHYNWHYRIRIHYNWHYNWHYNWHYyypwmFhththththththththththtNaNahtpwmFpwhtdrsBVJPWZTZTPWVJsBdrhtdgdgdghtNaNaGHGHmbnOWKnOVQnOWKnOBpGHGHNaNaDsaDzDzDzDzDNtySySDmySySDmySySySyStOySySDmySySDspwmFQTmFpwmFpwGepwmFpwylDQDQDQDQDQDQDQDQDQWHpwmFpwBapwmFpwmFpwmFpwmFpwmFpwmFpwmFQoylhtWgdoLuNTLuNTVjhththththththththththththtWHpwkjzMlPQYlPQYQYlPQYlPzMAYSYpwmFpwmFbfioFHioaYzJhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPEoKkaUGcVLDkaoKyUyUoKIIBwpwmFpwmFpwmFpwmFbnmFpwmFHPPEqLvqvqvqLJyVqLgPkxPETeaXKpRJOlbBbBbBTegPpwmtHYRAHYRAHYRAHYgGgGHYRAHYRAHYRAHYxDmFRFhtNaNaNaNaNaNaNaNaNaNaNaNahtmFpwmFhtdgdgdgdgdgdgdgdgdgSRhtdgdgdghtNaNaNaGHRQiLiLiLPlnOnOnOnOGHNaNaNaDsNizDFczDzDNtySySDmySySpDySySySySDmySySDmySySDsmFWvmFpwmFpwmFpwmFpwpiCBDQqJStHqgDpOEQKUDQphiWoZJSpwmFOzmFpwmFpwmFpwmFpwmFpwNUpwqmEYhtiiJOgaOBrZJOdBhtZqZFNePbNeZFNeZFNeZFNePbpwmFEczMlPBxlPBxBxlPBxlPzMEZpwmFOzmFpwmFpwmFpwNUpwhtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFSEoKQpQpQpQpQpenQpQpoKgPkxcByIkeyIkeyIkeyIkeyIkeAbjcacqLqLqLqLqLXrqLYuqmSETebBbBROOlbBbBbBTeIImFRDHYHYHYHYHYHYHYHYHYHYHYHYHYHYHYHYDgpwmFhthththththththththththththtKImFpwhttNsVGfsVWhWhsVXlSxdghtDCdgSRhtNaNaNaGHGHGHqwqwVUqwqwGHGHGHNaNaNaDsNtzDzDzDzDNtySySIuIuIuIukICDCHzsIuIuIuIuySySDsKImFpwmFOzmFpwmFpwmFOzylfFeVeVeVeVeVeVeVDQDQDQDQMfmFpwhthththththththththththtmFkxylhteppnJOpnJOpnMlRHprSiWfKudFpwmFpwmFpwmFpwmFmZvLzMQYBxQYBxBxQYBxQYzMAYmFpwhthththththththththtZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPEoKSVwyJWwywywywyVzoKIIqmDfMmMmMmMmMmMmMmMmMmMmEZHPveSgfcSgfcSgkYSgTOkxPETeALbBROqbbBbBBtTegPpwWjuNVpuNVpuNVpuNVpuNVpuNVpuNVpuNVpyOmFpwmFpwmFpwGepwmFpwGepwmFpwmFQTmFpwzJhtdgdgtaQCdEmlDddEmsdghtdgdgdghtNaNaeMeMeMeMeMeMTHeMeMeMeMeMeMNaNaDsRpzDzDzDzDNtySySroySySDmySySySySDmySySWtySySDsmFpwmFhththththththththtDQeVLGvHeVcIFMeVhTgDPPDQWHpwmFhtZyZyZyZyZyZyZyZyZyZyhtKIqmCBhtiiJOpnJOpnJOpnhtMfqmQRiWsqnnqYiWqYnnqYiWqYnnJizMTbpcGBpQpcGBpcuyzMxJpwzJhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFSEoKKYQpQpQpIrQpQpMWoKgPkxkjMmKMKMkfKMKMuLKMKMMmAYjcpwmFpwmFpwmFkxmFpwsKSETeJPbBRObBbBbBJPTeIIrkpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFqSmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwSYpwhtDCdgmldEFddEQCtaHZsVIssVSxdghtNaNaeMeEjzjzYCIbxMIbZnjzjzKeeMNaNaDsXIzDzDzDzDNtySySDmySySDmySDmrsySDmySySDmySySDspwmFpwhtUhYnYnRzDaoqYnYnDQeVeVeVgleVeVeVeVeVBjDQMfmFpwhtZyZyZyZyZyZyZyZyZyZyhtmFkxylhtvkpnLFLWxqpnvkhtWHkxyliRPHiRiRiRiRiRiRiRiRiRrNzMicQYBxQYQYBxQYBxzMAYmFpwhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPEoKQpQpQpQpQpQpQpsEoKIIqmEcMmeQWmWmVnUPUPUPUPMmxJHPMOVBucVBucVBBVVBjFyJPETeeObBRObBbBbBeOTeYMAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAeAJAevDmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFhtdgdgHLdgSMSMdgTadgSRhtdgmsdghtNaNaeMGMjzjzKzIbxMIbKzjzjzjzeMNaNaDsZJzDANzDzDNtySySIuIuPFIuIuIuIuIuIuIuIuIuySkIDsmFpwmFhtYnYnoqoqoqoqoqoqDQeVgBPueVvtEjeVqZFbeVDQWHpwmFhtZyZyZyZyZyZyZyZyZyZyhtpwqmCBhttMJOpnJOpnHvBkhtMfqmCBiRflMbQvMbMroQMrMbZSMbMrzMTbGBpcuysRpcxdjbzMEZpwmFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFSETYQpQpnXEyeBnXQpHyTYNhyJkjMmHWwqOdScUPWyQXHWMmAYjcfTuzuzuzuzuzuzuzmhqmSETeTeTeRObBbBTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTegPpwmFhthththththththththtpwmFpwhtdgdgdgIfdgdgIfdgdgdghtdgmsdghtNaNaeMcqlylyetIbxMIbmzlylyWXeMNaNaDsNizDzDzDzDDszsySDmySdLDmySDmDmySDmySySDmySySDspwmFpwhtYnDaoqoqYnYtDaTjDQZaeVeVeVeVeVEOeVeVeVDQMfmFpwhtZyZyZyZyZyZyZyZyZyZyhtmFkxylhtJOYFcbCjcblpJOhtWHkxyliRflMbMrMbMrMbMrMbMrMbMrzMQYBxQYBxBxQYBxQYzMAYmFpwhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwPpoKoKoKoKoKoKoKoKoKoKYuBrdsJMWmWmWmOTWmWmWmWmJMAtkGTpuzqlqlRbqlqluzyykCWfTXKpKphYbBbBbBbBbBbBIAbBbBbBbBIAIAbBbBbBbBIAbBbBbBbBIAbBbBbBbBTeYumFRFhtBdBdBdBdBdBdBdBdhtyNpwzJhtRKhthththththththtRKhtdgmsdghtNaNaeMCtbmbmBhIbxMIbZnbmbmleeMNaNaDssPzDFnFnzDDsySySySySdLTkySySySySySySySySySySDsmFpwmFhtTjoqYtUJoqoqjeYnDQeVIHiNeVjwwkeVCIYmeVDQWHpwmFhtZyZyZyZyZyZyZyZyZyZyhtpwqmEYhtOhOhOhTEOhOhOhhtMfqmEYiRflMbMrMbMrMbMrMbMrMbMrzMBxpcGBpcpcGBpcuyzMxJpwzJhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFjsfcSgfcSgfcSgfcSgfcSgTOpwkjMmffQzkQUPXvKVwUffMmAYjcrguzZWNIqlNIqluzxDmFpwbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBbBTegPpwmFhtBdBdBdBdBdBdBdBdhtpwmFpwhtdgdgxfdghthtdgxfdgdghtdgmsdghtNaNaeMjKlylymzIbxMIbuQlylyRMeMNaNaDsRpzDzDzDzDDsDsDsDsMDrDDsDsqTqTqTqTqTqTqTqTDsDsKImFpwhtoqYnoqDaoqTjYnYnDQeVeVeVeVeVeVeVeVeVeVfFMfmFpwhtZyZyZyZyZyZyZyZyZyZyhtmFkxylhtOhLYOhpgOhLYOhhtWHkxyliRflMbMrMbMrMbMrMbMrMbMrzMBxQYBxQYQYBxQYBxzMAYmFpwhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwmFpwmFpwmFpwmFpwmFpwmFpwmFEcMmUPUPUPUPUPUPUPUPMmxJHPAjuzqNqlqlqlGluzyypwmFWcbBbBbBbBWcbBbBbBbBWcbBbBbBbBWcWcbBbBbBbBWcbBbBbBbBWcbBbBbBbBTeIImFpwhtBdBdBdBdBdBdBdBdhtmFpwmFhtdgdgdgdghthtdgdgdgdghtdgmsdghtNaNaeMCtbmbmZnIbxMIbZnbmbmgoeMNaNaDsNtzDzDzDzDzDzDzDYLzDDlDszlaqaqaqaqaqaqaqaqzlDsmFpwmFhththththththththtDQDQDQDQDQDQDQDQDQDQDQDQWHpwmFhtZyZyZyZyZyZyZyZyZyZyhtKIqmCBhtOhCkOhTEOhCkOhhtMfqmCBiRmKMrCFMrMrCFMrMrCFMrMrzMTbGBpcuysRpcGBjbzMEZpwmFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFpwmFpwmFpwmFpwmFpwmFpwmFpwkjMmKMEPVCKMIYVCKMKMMmAYjcrguzAXNIqlNIqluzxDmFSETeWLWLWLiKTeWLWLWLiKTeWLWLWLiKTeTeiKWLWLWLTeiKWLWLWLTeiKWLWLWLTegPpwmFhtBdBdBdBdBdBdBdBdhtpwmFpwhtDCIZIZSRhthtdgIZIZSRhtDCmsSRhtNaNaeMGMjzjzKzIbxMIbKzjzjzjzeMNaNaDsZJzDOoOozDzDzDzDzDzDDlMDzlzlzlzlzllczlzlzlzlDspwmFpwmFpwmFxixixixixixixixiNeZFNeZFNeZFNeZFNeZFsrmFpwhtZyZyZyZyZyZyZyZyZyZyhtmFkxylhththththththththtWHkxyliRiRiRiRiRiRiRiRiRiRiRiRzMQYBxQYBxBxQYBxQYzMAYmFpwhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFpwzJhthththththththththtKImFDfMmMmMmMmMmMmMmMmMmMmEZHPAjuzAXNIqlNIqluzyypwPETeHdHdHdHdTeHdHdHdHdTeHdHdHdHdTeTeHdHdHdHdTeHdHdHdHdTeHdHdHdHdTeYumFRFhthththththththththtyNpwmFhtdgHxHxdghthtdgHxHxdghtdgmsdghtNaNaeMeEjzjzmzIbxMIbmzjzjzKeeMNaNaDszDzDFpzDFpzDzDzDFpzDDlDszlaqaqaqzlzlaqaqaqzlkNmFDvmFpwmFpwxixixixixixixiximFpwmFpwcapwmFpwmFpwmFpwmFhtZyZyZyZyZyZyZyZyZyZyhtpwqmskPbNeZFNePbNeZFNePbsrqmskPbNeZFNePbNeZFNeZFNePbyczMTbYXQFYXYXQFYXuyzMxJpwmFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFpwZUxixixixixixixixiFTmFpwBDwgWJwgWJwgWJwgWJwgWJKkjcrguztmqlqlqloduzxDmFSETeHdHdHdHdTeHdHdHdHdTeHdHdHdHdTeTeHdHdHdHdTeHdHdHdHdTeHdHdHdHdTegPpwmFFTxixixixixixixixiZUpwmFpwhtDCdgSMSRhthtdgIZdgSRhtdgmsdghththteMoPoPoPxzIbxMIbuBvMvMvMhFSqSqSqSqSqSqSqSqSqSqDsDsDsrDDsWezlzlzlzlzlzlzlzlBvDspwmFpwmFpwNUxixixixixixixixiOzmFpwmFpwmFpwmFpwmFpwmFpwhtZyZyZyZyZyZyZyZyZyZyhtmFkCWfKuWfKuWfKuWfKuWfKuWfkqWfKuWfKuWfKuWfKuWfKuWftQkjzMlPAnlPAnAnlPAnTbbpXGdFRFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtmFWvmFFTxixixixixixixixiZUpwBapwmFpwmFpwmFpwmFpwmFpwmFOYAjuzAXNIqlBSqluzyypwPETeHdHdHdHdTeHdHdHdHdTeHdHdHdHdTeTeHdHdHdHdTeHdesHdHdTeHdHdHdHdTeIIpipwZUxixixixixixixixiFTmFVfmFhtdgdgdgdghthtdgdgdgdghtdgmsdgdgxfdgeMIbIbIbIbIbxMIbIbIbIbIbGoSqHwFtHwQeYEHwFtXtSqZyZyZyanDszlzlrTzlzlzlzlzlzlzlDshthththththtxixixixixixixixihthththththththththththththtZyZyZyZyZyZyZyZyZyZyhtpwmFpwNUpwmFpwNUpwmFpwNUpwmFpwNUpwmFpwNUpwmFpwNUpwqmEczMlPlPlPlPlPlPlPlPzMEZkxmFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtpwmFpwZUxixixixixixixixiFTmFpwmFpwmFpwmFpwmFpwmFpwmFpwjcOawwmaqloYqlqlERxDmFSETekuHdHdZPTeZPHdHdZPTegUHdHdZPTeTeZPHdHdiGTeZPHdHdZPTeZPHdHdPrTegPpwmFFTxixixixixixixixiZUpwmFpwhtdgdgdgdghthtdgdgdgdghtdgHZsVsVsVsVLiTATATATATAkOTATATATATATAbknQBuQuQuQuQuQuQuSqZyZyZyanDskWdMbWvfIQPVkybWsCXnDsNaNaNaNaNahtxixixixixixixixihtNaNaNaNaNahtZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhththththththththththththtqRhththththththththththtmFkxkjzMzMzMzMzMzMzMzMzMzMAYqmpwhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyhthththththtxixixixixixixixihthththththtbEbEbEbEbEbEbEbEbEqdbEuzuzuzuzuzuzuzbEbEbETeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTehthththtxixixixixixixixihthththththththththththththththtdgdgIfdgdgdgeMIbwhIbIbIbPvIbIbIbIbwhIbSqYElSdXoMoMdXQubVSqZyZyZyanDsDsDsDsDsDsDsDsDsDsDsDsNaNaNaNaNahtxixixixixixixixihtNaNaNaNaNahtZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyhtpwqmxPiPwgWJwgWJMPWJwgWJMPCVkxmFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyanZyZyZyZyZyhththththththththteMeMeMeMeMeMeMeMeMeMeMeMeMSqEhlSdXoMoMdXQuYESqZyZyZyanZyZyZyZyZyZyZyZyZyZyZyhtNaNaNaNaNahtxixixixixixixixihtNaNaNaNaNahtZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyhtmFkCWfKuWfKuWfKuWfKuWfKuWfKurQRFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZySqXjytQuQuQuQuQuQuSqZyZyZyanZyZyZyZyZyZyZyZyZyZyZyhtNaNaNaNaNahtxixixixixixixixihtNaNaNaNaNahtZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyhtpwmFpwNUpwmFpwmFOzmFpwmFOzmFpwmFhtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZySqXtUzHwYEYEGhUzHwSqZyZyZyanZyZyZyZyZyZyZyZyZyZyZyhtNaNaNaNaNahtxixixixixixixixihtNaNaNaNaNahtZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyhthththththththththththththththththtZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyhtBdBdBdBdhtxixixixixixixixihtBdBdBdBdhtZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZySqSqSqSqSqSqSqSqSqSqZyZyZyanZyZyZyZyZyZyZyZyZyZyxihththththththtxixixixixixixixihththththththtZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyanZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr +QrZyZyZyZyZyZyZyZyZyZyZyZyZyZyqRqRqRqRqRqRCrCrCrCrCrCrCrCrqRqRqRqRqRqRanananananananananananananananananananananananananananananananananananananananananananananananananananqRqRqRqRqRqRCrCrCrCrCrCrCrCrqRqRqRqRqRqRanananananananananananananananananananananananananananananananananananananananananCrCranananananananananCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrZyZyZyZyZyZyZyZyZyanananananananCrCrCrCranananananananananananananananLkananananananananananananananananananananananananananananananananananananananananananQr +MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDMi +MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUojDjDUoUojDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUojDjDjDjDUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDMi +MijDjDjDjDjDUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoYZUojDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoMi +MijDjDjDUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDqIjDjDUoUojDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDqIjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDUojDjDjDUoUoUoUoUoUoUoUoUoUoUoMi +MijDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDqIjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUojDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MijDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi zhYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfso -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZPqPqPqPqPqPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZPqPqjdxExExExEPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqPqxExExExExExExEPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExERNzWRNxExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWYqYqYqtWUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZdkdkPTdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqYPYPiExExExEiEYPYPPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBtWtWUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZdkdkSHSHSHdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBLBLBtWtWYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkdkZeSHSHSHZedkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYqLBLBLBLBLBLBLBYqYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkSHSHZtSHZeSHSHdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqYPYPiExExExEiEYPYPPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYqLBLBLBLBLBLBLBYqYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfPTSHSHSHSHSHSHSHPTWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoNdUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYqLBLBLBLBLBLBLBYqYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkSHSHZeSHZtSHSHdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBLBLBtWtWYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkdkZeSHSHSHZedkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqYPYPiExExExEiEYPYPPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBtWtWUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZdkdkSHSHSHdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWYqYqYqtWUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZdkdkPTdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwGvRwWZWZWZWZWZWZWZWZWZWZWZWZPqPqPqPqvPPqvPPqPqPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwGvRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZGvRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZTSWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZRwRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZRwRwRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwRwRwWZWZRwRwRwRwRwRwRwWZWZWZWZRwRwRwWZWZWZWZXEXEXEXEXEXEXEXEXEXEXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfRwRwRwRwRwWZWZWZWZWZWZWZRwRwRwWZWZWZRwRwRwRwWZWZWZWZXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKlKUKUKUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfRwRwRwWZWZWZWZWZWZWZWZWZWZRwRwRwWZRwRwRwRwWZWZWZWZRwXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKiFiFiFUKUKUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZLtLtLtLtLtLtLtLtLtLtLtLtLthiLtBYBYLtLtWUvKvKLtLtLtLtWZWZRwRwRwRwRwRwRwRwWZWZRwRwIKOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKtJiFiFiFtJUKUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKyKyKyKyKyKyKMQiririrOVirirpsLtvRyKkKyKLcLtLtLtLtWZWZRwRwRwRwRwRwRwRwRwRwRwIKOFOFOFOFOFXSOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKiFiFoRiFoRiFiFUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKLtLtLtyKLtChPyPyPyrdPyyKChLtvRdHyKyKLcLtqvqvLtLtWZRwRwRwrUrUrURwRwRwRwRwXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUolKiFiFiFiFiFiFiFlKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKLtyKyKyKLtChPyPySlrdPyyKChLtLtLtUQLtLtLtyKdbyKvKWZRwRwrUrUrUrUrURwRwRwWZXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKiFiFoRiFoRiFiFUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKLtdhyKyoLtClnPirnpBOPyFGSkyKyKyKyKyKyKUQyKyKyKLXWZRwRwrUrUGLrUrURwRwWZWZXEXEXEXEXEXEXEXEXEXEXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKtJiFiFiFtJUKUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKvKyKyKLtyKyKyKLtChPyPyRCrdPyyKChLtLtLtUQLtLtLtyKdbyKLXWZRwRwrUrUrUrUrURwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKiFiFiFUKUKUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKyKLtLtLtyKLtChPyPyPyrdPyyKChLtVOyKyKdHfKLtqvqvLtLtWZRwRwRwrUrUrURwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKlKUKUKUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKvKyKyKyKyKyKyKyKwOiririrOVirirPMLtVDRyVNRyQULtLtLtLtWZWZWZRwRwRwRwRwMZRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKLtLtLtLtLtLtLtLtLtLthiLtBYBYLtLtvKWavKLtLtLtLtWZWZWZWZWZRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZRwRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZRwWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDqIjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZRwRwRwRwRwRwWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZIiWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUojDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZRwRwRwRwRwRwRwRwWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDrprUWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZrUrUrUWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwRwWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZrUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZWZWZrUrUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZWZWZWZWZWZrUrUrUrUrUrUWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwRwRwRwWZWZWZWZWZWZrUrUrUrUrUrUWZWZWZWZWZWZNK -MiUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUrUrUWZWZWZrUrUrUrUrUrUrUrUrUrUrUrUrUWZWZrUrUrUWZrUrUrUrUrUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZWZrUrUrUrUrUrUrUrUrUrprUrUrUrUWZWZrUrUrUrUrUrUWZWZWZWZrUrURwRwRwRwRwWZWZWZWZWZrUrUrUrUrUrUrUrUrUrUWZWZWZWZNK -MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUojDjDjDjDUoUoUoUoUojDjDjDjDUoUoUoYZjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUWZWZWZrUrUrUrUrUrUrUrUrUrUrUrUrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrURwRwRwWZWZWZrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUNK -MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUNK -RjmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvzSzSzSzSzSXsmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvfQfQpdpdpdfQfQmvmvmvmvmvmvmvmvmvmvfQfQUHUHUHfQfQmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvNnmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvzSzSzSzSzSzSmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvRj -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNczSOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQMzMzMzMzMzhkwdwdwdhkMzMzMzMzMzOQOQMzMzMzMzMzhmllllllhmMzMzMzMzMzOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcuhNcNczSOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQamjCMzMzMzMzMzMzhkhkhkhkwdhkhkwdwdwdwdMzMzMzMzllllllllhmhmllhmhmhmhmMzMzMzMzMzMzOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQuhNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcxXNczSOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQjCamMzMzllllllllMzwdwdwdhkwdwdwdwdhkhkwdMzMzMzMzllhmhmllllllllhmllllllMzwdwdwdwdMzMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceieiVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceiwGeiNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQasasasasasasasasasasasamMzllllhmhmllMzwdhkwdhkhkhkhkhkhkhkwdMzMzMzMzllhmhmhmhmhmhmhmllhmllMzwdhkhkwdwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNceieieieioEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcNcNcNcmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNceiNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcLUNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieiNcOQNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQasawawaSbaawawawawawasamMzllhmhmhmllWIwdhkwdhkhkwdwdwdhkhkwdMzMzMzMzllhmhmllllllhmhmllhmllxuwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNceieiNcNcxXNcNcNcNcNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieieiOQOQOQNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQasawawaSasasasbdawawasbGMzllllllhmhmMzhkwdwdhkhkwdhkwdwdwdwdMzMzMzMzllllllllhmllhmhmllllhmMzhkhkwdwdwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcNcQqNcNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNceieizSNcNceiDBNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcQINcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNceieieiDBeieiOQOQOQOQOQzSNcVeNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQasawawbIbZcececiawawcjbGMzhmhmllhmhmMzhkwdhkhkhkwdhkhkhkhkhkMzMzMzMzhmhmhmhmhmllhmhmhmllhmMzhkhkwdhkhkMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcxXNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcNcNceiNcOQOQOQOQzSNcNcNcNcNcNcNcVROQOQOQNceiNceiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcuhNcNcNcNceieieieieieiOQOQOQOQOQmvNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcOQOQNcNcNcNcNcuhNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQasawawaSasasasbdawawasbGMzhmhmllhmhmMzhkwdwdwdwdwdhkhkhkhkhkMzMzMzMzhmhmhmhmhmllhmllllllhmMzhkhkwdhkhkMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiNcOQOQNcNcNcNcNcQqNcNceieiNcNcOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcOQNcNcNcQqNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcxXNcNceieieieieieieieiOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcOQeieieiNcNcVROQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQasawawaSbaawawawawawasamMzllllllhmhmMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzhkhkwdwdwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQeieiuhNcNcNcNcVROQOQeieieieieiOQOQeiwGeieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcuhNcOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeieiNcNcNcNcNcNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcQINcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQeieieieieieiOQOQmvOQOQNcNcNcNcNcNcNcNceieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcxXNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQascocoasasasasasasasasamMzllhmhmhmhmMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzhkhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcVeNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNcNcNcNcNcNceiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcxXNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieieieiOQOQmvOQOQOQNcNcNcNcNcNceieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQamMzllhmhmhmhmMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzhkhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcxXNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcxXeieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcQINcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcOQOQmvOQOQOQOQNcNcNceieieijGeieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQamMzllllllllllMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzwdwdwdwdwdMzmvOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcoEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcOQmvOQOQOQOQOQVReieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQiXNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQamMzllhmhmhmllMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQNcNcNceieiOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceiDBeiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNczSOQOQOQOQOQOQOQeieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQNcNcNceieiOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNceieiNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQeiNcNcNcwGeiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcQqzSOQOQOQOQOQOQOQOQeieieieieieieieieieieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNciXOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQeiNcNceieiOQOQOQOQOQOQNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQeieiNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSVROQOQOQOQOQOQOQOQeieieieieieiwGeieiNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQmvMzhmllllllllMzczczczczczczczczczczczMzMzMzMzczczczczczczczczczczczMzwdwdwdwdhkMzmvOQOQOQOQOQOQOQOQeiNcNceiOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeieiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcNcNcNcOQOQOQOQOQlf -nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUOQOQOQOQOQOQOQOQOQNcVezSNcOQOQOQOQOQOQOQOQOQOQeieieieieieiNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQmvMzhmllhmhmhmMzczczczczczczczMzMzczczMzMzMzMzczczMzMzczczczczczczczMzhkhkhkwdhkMzmvOQOQOQOQOQOQOQeieiNcNceiOQOQOQOQOQOQOQOQOQNcNcNcQINcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcQqNcNcNcNcNcNcNcNcOQOQOQOQlf -nUininininJJinininininJJininininnUinJJininininininJJinininJJininnUOQOQOQOQOQOQOQOQOQNcNczSNcNcOQOQOQOQOQOQOQOQOQeieieieieiNcNcNcuhNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQmvMzllllhmllllWIhmczczczczczczczMzhmhmMzMzMzMzczczMzczczczczczczczhmxuwdwdhkwdwdMzmvOQOQOQOQOQOQOQeiNcNcNcOQOQOQOQOQOQOQOQOQNcNcQINcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQlf -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUJJnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcNcNcVeNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmllhmMzMzMzMzMzMzMzcGMzMzmYmYMzMzMzMzkhkhMzMzcGMzMzMzMzMzMzMzhkwdhkhkwdMzmvOQOQOQOQOQOQeieixXNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcQINcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcxXNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcOQNcNcNcNcOQOQOQOQlf -nUinJJinininininininininininininnUinininininininininininJJinininnUOQOQOQOQOQOQOQOQOQOQOQzSuhNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcxXNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmllllMzcYhmhmdwMzhmhmhmMzhmhmMzMzMzMzhmhmMzhmhmhmMzdwhmhmcYMzwdwdhkhkwdMzmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQNcOQeieiOQeieiOQOQOQOQmvOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcOQOQOQNcNcNcOQOQOQOQlf -nUnUinnUinnUinnUinnUinnUinnUinnUnUnUinnUinnUinnUJJnUinnUVWnUinnUnUOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzdwhmhmdwMzhmhmhmMzhmhmMzMzMzMzhmhmMzhmhmhmMzcYhmhmdwMzwdhkhkhkwdMzmvOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNceieieiNcNcOQOQNczSOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcOQOQOQOQOQNcNcNcOQOQOQlf -nUininininJJininJJininJJininJJinnUinininJJininininJJininininJJinnUOQOQOQOQOQOQOQOQOQOQOQVZNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvMzllllllllllMzdwhmhmcYMzhmhmhmcGhmhmMzMzMzMzhmhmcGhmhmhmMzdwhmhmdwMzwdwdwdwdwdMzmvOQOQOQOQOQNcNcNcQqNcOQOQOQOQOQOQOQOQOQNcNcNcQINcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcQqxXNcNcNcNcNcNcNcNcNcNcNcNcNczSNcNcNcNcNcQqNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcOQOQOQOQNcNcNcNcNcOQOQlf -nUnUnUinnUinnUinnUinnUPgnUinnUinnUJJnUinnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQOQmvNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvMzMzMzMzMzMzMzMzhmhmMzMzMzMzMzMzWzWzMzMzMzMzWzWzMzMzMzMzMzMzhmhmMzMzMzMzMzMzMzMzmvOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNceieiOQOQOQNcNcNcNcNcNcOQOQlf -nUininnUinininJJininJJinininininnUininininininJJininininininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNceieiOQOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNceieieiNcNcNcNcNcNcNcNczSNceieieiNcNcNcNcNcNcNcNceieieiNcNcNcOQOQOQOQOQNcNcNcNcNcNceiOQOQOQNcNcNcNcNcNcNcNcOQlf -nUxbinininnUinnUinnUinnUinnUinnUnUnUinnUinnUinnUxxnUinnUJJnUinnUnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNceieieiOQOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQOQNcNcNcOQOQNcNcNcVROQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcLUOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQeieiDBNcNcNcNcNcNczSNceiOQeiNcOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiOQOQNcNcNcNcNcNcNcNcNcOQlf -nUininnUininJJinininininJJinininSDinininJJininininininininininJJnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcuhNcNcNcOQOQOQOQOQOQOQeieiSWeieiOQOQOQOQOQOQOQOQmvOQMzhmhmhmnchmhmhmnchmhmhmnchmhmhmhmMzMzMzMzhmhmhmhmnchmhmhmnchmhmhmnchmhmhmMzOQmvOQOQOQiXNcNcNcOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNczSeieiOQOQOQOQOQOQOQNcNcNcNcNcNcNcVeNcNcNcNcNcNcNcNcNcNceieiOQOQOQNcNcNcNcNcNcNcNcNcOQlf -nUnUnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQmvOQMzhmhmhmnchmhmhmnchmhmhmnchmhmhmhmMzMzMzMzhmhmhmhmnchmhmhmnchmhmhmnchmhmhmMzOQmvOQOQOQNcNcNcOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNczSOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcxXNcNcDBeiOQOQOQOQNcNcNcNcNcNcNcNcNcOQlf -nUinininJJininininJJininininJJinnUininJJininJJininJJininininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcQqNcNcNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQNcNcNcOQOQOQOQOQiXNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQeiNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcmvOQOQOQOQOQOQOQOQOQOQOQOQdieieiNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQlf -nUnUinnUinnUJJnUinnUinnUinnUinnUnUnUinnUinnUinnUinnUinnUinnUJJnUnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiNcNcNcNcNcNciXOQOQOQNcNcNcNcNcOQOQOQOQeieieieiOQOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQNcNcNcOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcNcNceiOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQlf -nUininJJininininininJJinininininnUininininininJJininininininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQVRNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieiNcNcOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQNceieieiOQOQOQOQOQOQOQOQOQmvOQMzMzWzWzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzWzWzMzMzOQmvOQOQOQNcNcVROQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNceiVROQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinnUinnUPgnUinnUinnUinnUinnUinnUinnUinnUyMnUinnUinnUJJnUzvnUinnUOQOQOQOQOQOQOQOQOQOQOQmvOQjCeiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQNcNceieiOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQOQNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininininininJJinininininJJininnUininJJinininininininininininJJnUOQOQOQOQOQOQOQOQOQOQOQmvOQOQeieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiDBeieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQOQNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcxXNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUOQOQOQOQOQOQOQOQOQOQOQmvOQOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininininJJinininJJinininininJJnUinininininJJininininininJJininnUOQOQOQOQOQOQOQOQOQOQOQmvOQjCeieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiwGeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQNcNcNcOQOQOQOQOQOQNcNcNcNcxXNcZlNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQOQmvOQeieieieiRkOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcQqNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzMzMzMzWzMzMzWzMzMzoIyqeffShmhmMzMzMzMzhmhmhmhmhmhmMzMzWzMzMzWzMzMzMzMzOQOQmvOQNcNcNcOQOQOQOQOQNcNcNceieiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcQqNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininJJininininininininininininnUininJJininininininJJinininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQeieiDBeiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcuhNcNcNcNcNcOQOQOQOQOQOQOQOQmvOQOQOQMzMzMzhmvbvbhmEAMzhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmMzMzhmvbvbhmJRMzMzOQOQOQmvOQNcNcNcOQOQOQOQNcNcNceieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcVROQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQjCeiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUnUinnUxxnUinnUinnUinnUJJnUinnUnUnUinnUinnUinnUnKnUinnUinnUinnUnUOQOQOQOQOQOQOQOQOQOQjCDkeieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieieieiDBeieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQmvOQOQOQMzMzyxhmvbvbhmMzMzWdNuysvchmhmMzMzMzMzhmhmhmhmhmhmMzvNhmvbvbhmMzMzMzOQOQOQmvOQNcNcNcOQOQNcNcNcNceieieieiNcNcOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNceiDkOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininininininininJJininininJJinnUinJJininininJJininininJJinJJinnUOQOQOQOQOQOQOQOQOQOQeiDkSWeieieieieieiOQOQOQOQOQOQOQOQNcNcNcNceieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcVROQOQOQOQOQmvOQOQOQMzMzMzNuMzMzNuMzMzhmhmhmhmMzMzMzMzMzMzMzMzhmhmhmhmMzMzysMzMzvcMzMzMzOQOQOQmvOQNcNcNcOQNcNcNceieiDBeieiNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcDkeiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUVWnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQeieiDkeieieiwGeieieieiOQOQOQOQOQVRNcNcNcNcNceieieieiOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQNcmvOQOQOQOQMzhmhmhmhmhmMzMzhmhmMzMzMznvgyRTRTgynvMzMzMzhmhmMzMzhmhmhmhmhmMzOQOQOQOQmvOQOQNcNcNcNcNceiwGeieiNcNcNcOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNczSeieiThOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQjCeiNcNcNceidiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinJJinininininJJininininJJininnUininininJJininJJininJJininininnUOQOQOQOQOQOQOQjCNceieiDkeieieieieieieieieiOQOQOQNcNcNcxXNcNceieiOQOQOQOQOQeieieieiOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcOQOQNcNcNcNcNcNcNcNcNcNcNcmvOQOQOQOQMzMzhmhmhmhmhmMzMzMzMzfxuFhmhmhmhmhmhmuFfxMzMzMzMzhmhmhmhmhmMzMzOQOQOQOQmvOQOQiXNcNcNcNcNceieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQTheiNcNcNYNcNceieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUnUinnUinnUJJnUinnUMEnUinnUinnUnUnUinnUinnUinnUinnUMEnUinnUinnUnUOQOQOQOQOQOQOQNcNcNceimvOQeieieieieieieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQeieiSWeiNcOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcNcNcNczSOQOQOQOQOQMzhmhmhmhmhmhmhmMzwHhmhmhmhmVyVyhmhmhmhmzAMzhmhmhmhmhmhmhmMzOQOQOQOQOQmvOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDBNcNcNcNcuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieizSNcNcNcNceieieiOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUJJinininininininininJJininininnUininJJinininininininininJJininnUOQOQOQOQOQOQNcNcNcNcjCmvOQjCeieieieieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQeieieiNcNcOQOQOQOQOQOQOQOQOQeieieieieieiNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSOQOQOQOQOQMzMzhmhmhmhmhmhmezhmhmhmhmVyMzMzVyhmhmhmhmezhmhmhmhmhmhmMzMzOQOQOQOQOQmvOQOQNcNcNcQqxXNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiOQeiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiDkNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQeieiNcNcNceiOQOQOQOQOQxmxmxmxmxmxmxmxmxmxmxmxmxmxm -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUOQOQOQjCNcNcQqNcNcOQOQmvOQOQOQOQeieieiNcNcQqNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcoEOQOQOQOQOQOQOQeieieieieieieieiOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNczSNcOQOQOQOQOQMzMzMzhmhmhmhmezhmhmhmhmhmVyVyhmhmhmhmhmezhmhmhmhmMzMzMzOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiOQOQeieiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQDkeieiNcNcNcNcNceieiOQOQOQOQOQOQOQOQjCeiNcNceieieiOQOQOQOQOQxmmumumumumumumumumuxmmumuxm -nUininininJJinininJJininininJJinnUinininininJJinininJJinininininnUOQOQOQNcNcNcNcNcOQOQOQmvOQOQOQOQjCNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNceieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcuhNcNczSNcOQOQOQOQOQOQOQMzMzMzhmhmMzBEhmhmhmhmhmhmhmhmhmhmRdMzhmhmMzMzMzOQOQOQOQOQOQOQOQmvNcNcNcNcNcNcNcNcOQOQKOKOKOKOKOKOKOKOKOOQOQOQeieieieiOQOQOQOQeieiNcNcNcxXNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQeieieiNcNcNcNceiOQOQOQOQOQOQOQOQeieiNcNceijCOQOQOQOQOQOQxmmumumumumumuxmmumumumumuxm -nUnUinnUnKnUinnUinnUinnUinnUzvnUnUnUinnUinnUinnUinnUinnUinnUinnUnUjCOQNcNcNcNcNcjCOQOQOQmvOQOQOQOQOQiXNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQNcNcxXeieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNczSNcNcOQOQOQOQOQOQOQOQMzMzMzMzMzuFfxbKhHfufuhHbKfxuFMzMzMzMzMzOQOQOQOQOQOQOQeieieiDkNcNcNcNcNcNcNcOQOQOQKOrAZhZhZhZhZhrAKOOQOQeieieieiOQOQOQOQOQOQeiNcQqNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcNcNceieiOQOQOQOQOQOQeieiNcNcNceiOQOQOQOQOQOQOQxmmuxmmumumumumumumumuxmmuxm -nUinJJinininininJJinininJJinininnUininJJininininJJinininininJJinnUNcNcNcNcNcOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQeieieiNczSNcNcNcNcNcNcOQOQOQOQKOrAZhZhZhZhZhrAKOOQeieieieiOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieiOQOQOQmvOQOQOQOQVRNcNcNcNceiOQOQOQOQjCeieiNcNcNcOQOQOQOQOQOQOQOQOQxmmumumuxmmumumumumumumumuxm -nUinnUinnUinnUJJnUinnUinnUinnUinnUinnUinnUyMnUinnUinnUinnUinnUinTGNcNcNcOQjCOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiNcNczSNcNcNcNcNcOQOQOQOQKOKOrAZhZhZhZhZhrAKOeieieieiOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNceieiOQOQmvOQOQOQOQOQNcNcNcNcNcNcjCOQOQeieiNcNcNcjCOQOQOQOQOQOQOQOQOQxmmumumumumumuxmmumumumuxmxm -nUininininJJinininininininininJJnUJJinininininininininJJininininnUNcOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQNcNcNcuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcNcNcNceieiOQeieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieiNcNcxXzSNcNcNcNcOQOQOQOQOQKOHhrAZhZhZhZhZhrAbTeieieieiOQOQOQOQOQOQOQNcNcNceieieieiNcNcNcNcNceieiOQOQeieieiNcNcNcNcNcNcNcNcNcNcNceieieimvOQOQOQOQOQOQNcNcNcxXNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQxmmumumumumumumumumumumumuxm -nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUjCOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQNczSNcNcNcNceieieieieieieieieiNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcOQOQOQOQOQOQOQOQKOKOrAZhZhZhZhZhrAKOOQeieiOQOQOQOQOQOQOQNcNcNceieiOQOQeieieieiNcNcNceieieieiNcNcNcNcNceieieieieieieiNcNcNcNczSNcVROQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQxmxmxmxmxmmumumumumumumuxmmumumuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcQqNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQzSNcNcNcNcNceieieieieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcuhNceieiDkNcOQOQOQOQOQOQOQOQOQKOrAZhZhZhZhZhrAKOOQeieieiOQOQOQOQOQOQNcNceieiOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQeiDBeiNcNczSNcNcNcNcNcNcNcNcNcNcNcNciXOQOQNcNcNcNcNcjCOQOQOQOQOQxmnfnfnfmumumumumumumumumumumuxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQmvNcNcNcNcNceieieiwGeiNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcNcNcNceieieiDkNcNcOQOQOQOQOQOQOQOQKOrAZhZhZhZhZhrAKOOQOQeieieiOQOQOQOQOQNcNceiOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcNceieieiOQOQOQOQOQOQOQOQeieieizSNcNcNcNcNcNcNcNcNcNcjCOQOQOQOQjCOQNcNcNcOQOQOQOQOQOQxmnfctnfmumumumuxmmumumumumumuxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNczSNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQmvOQOQNcNcNcNcNcNcVeNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiNcNcNcNcNcQqNcNcNcNceieieieiDkNcNcNcOQOQOQOQOQOQOQKOKOKOKOKOKOKOKOKOOQOQOQeieiOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQNcNcNcjCOQOQOQOQxmnfnfnfmuxmmumumumumumumumumuxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcCUNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQmvOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNceieieiNcNcNcNcNcNcNcNcOQOQOQOQeiDBDkeiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiOQVRNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQeieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcuhNcOQOQOQOQOQOQOQOQOQOQOQOQOQxmaIaIxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmMRxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNceiOQOQOQOQeiNcNcNcNcNcNcuhNcNcNcNcNcNcQqNcNczSNcNcNcNcVeNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQmvOQOQOQOQNcNcNcNcNcNcQqNcNcOQOQOQOQOQOQOQNcNceieieieiNcNcNcNcNcNcOQOQOQOQOQOQOQeiDkeiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmnfnfmumumumumuxmnfnfnfmumumumumumumumumumumumuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNceieieieieieieieiNcNcNcNcNcNcxXNcNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcVROQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQeieieieieieiNcNcNcOQOQOQOQOQOQOQOQOQOQDkeieiNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmmumumumumuxmnfxmmumuxmxmxmxmxmxmxmxmxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNceieieieiDBeieieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQmviXNcNcNcNcxXNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQmvOQOQOQOQOQOQOQiXNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieiiXOQOQOQOQOQOQOQOQOQOQOQOQVZeieiNcNcNcNceieiVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmmumumumumumumuxmnfxmmumumumumumumumumumumuxmmuxm -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcCUeieieieieieieieieieieiNcNcNcVROQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQiXNcNcNcOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmveiNcNcNcNcNceieieieieiNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvNcQqNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmmumumumumumumuxmnfxmmuxmmumumumuxmmumuxmmuxmmuxm -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcuhNcNcNcNcNceiOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQVRNcNcNceieieieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmmumumumumumumuxmnfxmmumumumumuxmmumumumumuxmmuxm -lfOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcNcNcNcNceieieieiOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNceieieieieiNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmmuxmmumumuxmnfxmmumumuxmmumumumumumumuxmmuxm -lfOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcNcNcNceieieieieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNceieieiNcNcNcNcuhNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmmuxmmumumuxmnfxmmuxmmumumumuxmmumuxmmuxmmuxm -lfOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQNcNcQINcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvNcNcNcNcNcNcNcOQNcNcNcNcNceieieieieieieieieieieiDBeieieieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcxXVeNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcxXuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmnfxmxmxmxmxmnfxmmumumuxmmumumumumumumuxmmuxm -lfOQOQOQOQOQNcNcxXNcNcOQOQOQOQNcQINcNcNcNcNcLUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcNcNcOQOQOQOQVReieieieieieieieieieieieieieieieiwGeieiNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieieieieieieiOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQVRNceieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmnfmumumuxmxmnfxmmumumumumumumuxmmumumuxmmuxm -lfOQOQOQOQOQNcNcNcNcOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNczSNcNcNcNcNcOQOQOQOQOQOQeieieieieieieieieieieieieieieieijGeieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieieieieiDBeiOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQeieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQVRNcNcOQNcOQOQOQNcNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNczSNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQxmmumumumumumumuxmnfxmxmmumumumuxmmumumumumuxmmuxm -lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcQINcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSQqNcNcNcOQOQOQOQOQOQOQOQOQeieiDBeieieieieieieieieieieieieieiNcNcVeNcNcNcNcNcNcNcNcNcNcNcNceieieieieieieieieiNcNcNcOQOQOQOQOQmvOQOQOQOQOQOQOQNcNcNceieieieieieieieiThOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNczSNcNcNcOQOQOQOQOQOQiXNcNcNcNcNcOQOQOQxmmumumumuxmmumuxmnfxmxmmumuxmmumumumuxmmumuxmmuxm -lfOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQNcNcNcQINcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiOQNcNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieiOQOQOQOQOQOQeieiNcNcNcNcNcuhNcNcNcNcQqNcNcNceieieieieieieieieieiNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQNcNcNceiNceieieieieieiDBeieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNczSNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcNcOQOQxmmumumumumumumunfnfxmxmmumumumumumumumumuxmxmmuxm -lfOQOQOQOQOQNcNcNcNcQqNcOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieieiNcNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNceieieieieieieieieieieieiNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNceieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcVZOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQxmmumuxmmumumumuxmxmxmxmmuxmmumumumumumumumuxmmuxm -lfOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieiNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQlflfuKuKuKuKuKuKuKlflfOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNceieieieieieiwGeieieieieieiNcNcNcNcNcNcNczSNcNcNcQqNcNcNcNcNceieieieieieieieieieieieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQNcNcNcQqNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcmvOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQxmmumuxmmumumumuxmxmxmxmmumumumumuxmmumuxmmuxmmuxm -lfOQOQOQOQOQOQNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieieieieiNczSNcOQOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNceieiDBeieieieieieieieieieieiNcNcNcNcNcNczSNcNcNcNcNcNcNcNceieieiwGeieieieieieieieieieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcmvOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQxmmumuxmxmmuxmxmxmxmxmxmxmxmxmmumumumumumumuxmmuxm -lfOQOQOQOQOQOQOQNcNcNcxXNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcNceiwGeieieieieieimvOQOQOQOQOQOQOQOQOQOQOQOQlflfNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieieieieieieieieieiOQOQOQNcNcNcNcNcNczSNcNcNcNcNcNcNceieiDBeieieieieieieieieieieieieiNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQmvVRNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcQqNcNcNcNcNcNcOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQxmxmmumumumuxmxmxmxmxmmumumuxmmumumumuxmmumuxmmuxm -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcQqNcNcNcNcNcNcNcNcNcNcxXNcNceieiDBeiOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcqpqpqpNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieiNcNcNcNcNcNcNcOQNcOQOQOQOQOQOQOQOQzSNcNcxXNcNcNcNcNcOQOQOQOQOQOQOQNcNcOQOQiXNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQmvOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQxmxmmumumumuxmxmxmxmxmmumumumumuxmmumumumumuxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQlflfNcNcNcqplDlDlDqpNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieiNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQNczSNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcxXNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcVROQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQxmxmmumumumuxmxmxmxmxmmumumumumumumumumumuxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQVROQNcNcNcNcNcNcNcOQNcOQOQVROQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcqplDHKlDqpNcNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNczSNcNcNcuhNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNciXOQOQOQxmxmxmxmxmxmxmxmxmxmxmxmnfxmxmxmxmxmxmxmxmxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcqplDlDlDqpNcNcNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcQqNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcVRNcNcOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQxmGWnfGWnfGWnfxmnfnfnfnfnfIkxmxmxmxmxmxmxmxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQlflfNcNcNcNcNcqpqpqpNcNcNcNcNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNczSNcNcNcNcNcOQOQNcNcNcNcNcNcNcOQOQVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmnfGWnfGWnfGWxmyunfnfnfnfIkxmmumumumumumumuxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmGWnfGWnfGWnfxmtHnfnfnfnfIkxmmumumumumumumumumuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmnfGWnfGWnfGWxmnfnfnfnfnfIkxmmumumumumumumuxmxmxm -DblflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflfxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxm +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoXEXEXEXEXEXEXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoXEXEbTYPYPYPYPXEXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEXEYPYPYPYPYPYPYPXEXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzbZbZbZbZbZbZMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPcoctcoYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzczczczczczczMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzThThThThThThThThMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzThThThThThThThThThThMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEcGcGjdYPYPYPjdcGcGXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoMzMzMzMzMzThThThThThThThThThThThThThThMzMzMzMzMzUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoMzcPThcTMzThThThThThThThThThThThThThThMzcTThcYMzUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoMzThThThMzThThThThThThThThThThThThThThMzThThThMzUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEcGcGjdYPYPYPjdcGcGXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoMzdhThThdiThThThThThThThThThThThThThThdkThThdtMzUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUodwUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoMzMzMzMzMzThThThThThThThThThThThThThThMzMzMzMzMzUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoMzMzMzMzMzefMzThThThThThThThThThThMzezMzMzMzMzMzUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEcGcGjdYPYPYPjdcGcGXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzfuThThMzMzMzfxMzfKfKMzfQMzMzMzThThfSMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzThThThMzgyThThMzfKfKMzThThhHMzThThThMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaWaYZUoUoUoUoUoUoUoUoUoUoUoUoUoXEYPYPYPYPYPYPYPYPYPXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMziFThjCMzThThThMzfKfKMzThThThMzjGThkhMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWalDWaUoUoUoUoUoUoUoUoUoUoUoUoXEXEXEXElKXElKXEXEXEXEUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzMzMzMzMzmYThncMzfKfKMznfThnfMzMzMzMzMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWalDWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzfKfKMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUolDWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzfKfKMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUonpUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaWaUoUoWaWaWaWaWaWaWaUoUoUoUoWaWaWaUoUoUoUoXEXEXEXEXEXEXEXEXEXEXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaWaWaUoUoUoUoUoUoUoWaWaWaUoUoUoWaWaWaWaUoUoUoUoXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaUoUoUoUoUoUoUoUoUoUoWaWaWaUoWaWaWaWaUoUoUoUoWaXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWUWUWUWUWUWUWUWUWUWUWUWUWUnvWUnKnKWUWUnPLtLtWUWUWUWUUoUoWaWaWaWaWaWaWaWaUoUoWaWaoEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYBYBYBYBYBYBYoRPyPyPyrdPyPypdWUpVBYqpBYrpWUWUWUWUUoUoWaWaWaWaWaWaWaWaWaWaWaoEWaWaWaWaWatHWaWaWaXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYWUWUWUBYWUMQiririrOVirBYMQWUpVtJBYBYrpWUtWtWWUWUUoWaWaWajDjDjDWaWaWaWaWaXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYWUBYBYBYWUMQiriruFOVirBYMQWUWUWUvKWUWUWUBYuKBYLtUoWaWajDjDjDjDjDWaWaWaUoXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYWUvbBYvcWUvNwHPywOxbirxuxxBYBYBYBYBYBYvKBYBYBYyoUoWaWajDjDyqjDjDWaWaUoUoXEXEXEXEXEXEXEXEXEXEXEUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtLtBYBYWUBYBYBYWUMQirirysOVirBYMQWUWUWUvKWUWUWUBYuKBYyoUoWaWajDjDjDjDjDWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYBYWUWUWUBYWUMQiririrOVirBYMQWUvRBYBYtJLcWUtWtWWUWUUoWaWaWajDjDjDWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtLtBYBYBYBYBYBYBYChPyPyPyrdPyPyyuWUyxdHyMdHvRWUWUWUWUUoUoUoWaWaWaWaWazvWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtWUWUWUWUWUWUWUWUWUWUnvWUnKnKWUWULtUQLtWUWUWUWUUoUoUoUoUoWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoWaWaWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoWaUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDqIjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoWaWaWaWaWaWaUoUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUozAUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoWaWaWaWaWaWaWaWaUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaWaWaUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi +MiUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzjDjDjDUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWaWaWaWaWaWaWaWaUoUoUoUoUoUojDjDjDjDjDjDUoUoUoUoUoUoMi +MiUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzjDjDjDjDjDUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDUoUojDjDjDUojDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDqIjDjDjDjDUoUojDjDjDjDjDjDUoUoUoUojDjDWaWaWaWaWaUoUoUoUoUojDjDjDjDjDjDjDjDjDjDUoUoUoUoMi +MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUojDjDjDjDUoUoUoUoUoMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUojDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDWaWaWaUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDMi +MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDMzMzMzMzMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzMzMzMzMzjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDMi +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +RjmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvzSzSzSzSAWzSzSzSmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvBCBCBCBCBCBCBCBCBCBCzSzSzSmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvzSzSzSzSzSmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvRj +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieieieieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieieieieiBOeieieiNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcCUNcNcNcOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQeieieieieieieieiNcNcNcDBNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUNcNcOQOQBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzSWSWSWSWSWSWSWSWSWSWMzThhmSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXwdxXxXxXxXxXxXxXxXxXxXMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQeieieieiOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcCUNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzSWSWMzSWSWMzMzMzMzSWMzBTMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXwdxXxXxXxXxXxXxXMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUNcCUNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzSWMzMzMzSWSWSWSWSWSWMzMzMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXwdxXxXxXxXxXMzMzMzNcOQOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQeieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcczThMzSWMzSWSWSWMzMzSWMzSWSWSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXwdxXxXxXxXxXxXxXxXxXxXxXThThczNcNcNceieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQNceieieieieieiCleieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcCUNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcczThczSWSWSWMzSWSWMzSWMzMzMzSWMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXwdxXxXxXwdThThczNcNcNceieieiCleieieieieiOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNceieieieieieieieiQqeiDkeieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQCUNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQBEOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcCUNcNcNcNcCUNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcczThMzSWSWMzMzMzSWMzSWhmThMzSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzwdxXxXxXxXxXxXxXxXxXxXxXxXThThczNcNcOQOQeieieieieieieieieieiOQOQOQOQOQOQOQOQeieieieiNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcDqNcNcNceieieiOQOQeieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcNcBEOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcDONcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcMzMzMzSWMzMzSWSWSWMzMzMzMzMzSWMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXwdxXxXxXxXxXMzMzMzNcOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQeieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQCUNcNcJJNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQMzMzMzSWSWSWSWMzSWMzSWSWSWSWSWMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXwdxXxXxXxXxXwdxXxXMzMzMzOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieieieieieiNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcCUNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcCUNcNcNcNcNcCUNcNcNcNcNcCUOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQMzMzMzMzSWMzSWMzMzMzMzSWMzMzMzMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXxXxXxXxXMzMzMzOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcxmNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieieiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcCUNcNcJJNcNcCUNcNcCUOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcOQOQMzMzMzMzMzSWSWMzSWSWSWSWMzSWSWSWSWMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXxXxXxXxXMzMzMzMzMzOQOQOQOQOQOQOQeieieieieieiCleieieieiCleieieieieiNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcxmNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQCUNcNcCUNcNcNcNcNcNcNcNcNcJJNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQNcNcNcNcNcNcOQOQMzMzMzMzMzSWMzMzSWMzSWMzMzMzSWMzSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXwdxXxXxXxXxXxXwdxXxXMzMzOQOQOQOQOQOQOQOQeieieieieieieiDWeieiDkeiQqeieieiNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQBENcNcNcNcOQOQOQOQOQOQOQNcJJNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcCUNcNcNcNcNcNcCUNcOQOQOQOQOQOQOQNcNcNcOQNcOQOQOQMzMzSWSWSWSWMzSWSWSWSWSWSWSWSWMzMzMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXwdxXxXxXxXxXxXxXxXxXxXxXxXxXMzMzOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcCUNcNcOQOQOQOQOQOQOQCUNcNcNcJJNcNcNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQBENcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQMzMzSWMzSWMzMzSWMzMzMzMzMzSWSWSWMzSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXwdMzMzOQOQOQOQOQOQOQOQOQOQOQeieieieieieiOQOQeiOQOQeieiOQNcNcOQNcNcNcNcNcNcNcNcOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcCUNcNcJJNcCUNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcCUNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcCUNcOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQMzMzSWSWSWSWMzSWMzThBTThMzSWMzSWMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXEoEoEoxXxXxXxXxXMzMzOQOQOQOQOQOQOQOQOQOQOQeieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQCUNcNcNcCUNcNcNcNcNcNcNcNcJJNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcCUCUOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQMzMzSWMzMzSWSWSWMzThEAThMzSWMzMzSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXwdxXxXEoThThThEoxXxXwdxXMzMzOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcxmNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcCUNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQCUNcNcNcNcNcNcCUNcNcNcNcOQOQOQOQOQOQOQOQNcNcCUNcNcNcNcCUNcCUNcCUOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQMzMzSWSWSWSWMzSWMzThThThMzSWSWSWSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzwdxXxXxXxXxXxXEoThEVThEoxXxXxXxXMzMzOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQNcNcJJNcNcNcNcJJNcCUNcNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcCUNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQMzMzMzMzMzSWSWSWMzMzhmMzMzMzMzMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXEoThThThEoxXxXxXxXMzMzOQOQOQOQOQOQOQOQOQOQOQNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcxmNcFNNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcCUNcNcNcNcNcNcNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQBENcCUNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQMzMzBTMzSWSWMzMzSWMzSWSWSWSWMzSWSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXwdxXxXEoThEoxXxXxXxXxXMzMzOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcDqNcNcOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcCUNcNcCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcBEOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQMzMzhmMzSWSWSWMzSWMzSWMzSWSWSWSWMzMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXwdxXxXxXxXxXxXxXxXxXxXxXxXwdMzMzOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQBENcNcNcNcOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUNcNcOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQMzMzMzMzSWMzSWMzSWSWSWSWSWMzMzMzSWSWSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXMzMzMzMzOQOQOQOQOQOQOQOQOQOQNcNcNcOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcJJNcNcNcNcJJNcNcBEOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQNcNcNcOQOQOQOQMzMzMzMzSWMzSWMzSWMzMzSWSWSWSWMzSWMzMzMzSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXxXxXxXxXwdxXxXMzMzMzMzOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcxmNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcOQOQOQMzMzMzMzSWSWSWSWSWSWSWSWMzSWSWSWSWSWSWMzhmMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXxXwdxXxXxXxXxXMzMzMzMzNcOQOQOQOQOQOQOQOQNcNcxmNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcDBNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcCUNcNcNcCUOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQNcNcNcOQOQOQMzMzMzMzSWSWMzMzMzMzSWSWMzSWMzMzMzMzSWMzBTMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXwdxXxXxXxXxXxXxXxXxXxXxXxXMzMzMzMzNcNcOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQNcNcOQOQOQMzMzMzMzSWMzMzSWMzSWSWSWMzSWSWMzSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzwdxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXMzMzMzMzNcNcOQOQeieieieiNcNcNcNcOQNcNcNcOQNcOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcxmNcNcOQOQOQOQOQOQOQOQOQeieieiOQOQOQNcNcNcNcNcNcNcDBNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcOQBENcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQNcOQOQOQOQOQOQNcNcOQOQMzMzMzMzSWSWMzSWSWSWMzSWSWSWMzMzSWMzSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXwdxXxXxXxXwdxXMzMzMzMzNcNcNcNceieieieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNceiOQOQOQOQOQOQeieieieieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcCUNcNcNcBEOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNcNcNcNceieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceieieieiOQOQeieieieieieieiNcNcNcNcNcNcNcNcNcNcNcOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieieieieieieieieieiNcNcNcNcNcNcNcNcNcOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcThThThThThFPThGvThGLThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThKOKOKOKOKOKOKOKOThThThGWNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieiNcxmNcNcNcNcNcNcNcOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcCUNcNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcThThThThThThThGvThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThKOKOKOKOKOKOKOKOKOThThThGWNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDkeieieieieieieieiBOeiNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOThKOKOKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDWeieieieieieieieieieiNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOThThThKOKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThKOKOThKOKOKOKOThKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcxmNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiCleieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThKOKOKOKOKOThThThKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcDqNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThKOKOKOThKOKOKOThKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQBEOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHKHKHKHuGvuhThThThuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOThThThKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNceieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHKHuHuHuGvuhuhuhThuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOThKOKOThKOKOKOKOThKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBEOQNcNcNcNcNcCUNcNcNcOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHKHKHuHuHuGvuhuhuhThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThThThKOKOKOKOKOThThThMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcDBNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUNcNcNcNcNcNcNcNcBEOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHKHuHKHKHKGvThThThuhThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOThKOKOKOKOKOKOKOThKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQNcCUNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHKHuHKHuHKGvThuhThuhThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOKOKOKOKOThKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcxmNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQBENcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcCUNcNcNcOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHKHKHKHuHKGvThuhThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOKOKOKOThThThKOKOMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQCUNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcNcCUNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzHuHuHuHuHKGvThuhuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThKOKOKOKOKOKOThKOKOKOMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcxmNcNcNcOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQNcNcNcOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcCUNcNcNcNcOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzHKHKHKHuHKGvThuhThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThKOKOThKOKOKOKOKOKOMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcNcCUNcNcNcNcNcNcNcNcNcNcNcNcBEOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzHKHuHKHKHKGvThThThuhThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThKOKOThThThKOKOKOKOKOMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQNcNcDBNcNcNcOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcCUNcNcNcCUNcNcNcNcNcOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzHKHKHuHuHuGvuhuhuhThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOKOThKOKOKOKOKOThMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQCUNcNcCUNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcCUNcOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzHuHKHuHuHuGvuhuhuhThuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOThKOKOKOKOKOThThMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcxmNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzThThThThThGvThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOThThThKOKOThKOKOThMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcxmNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQNcNcCUNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzThThIiThThGvThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThKOKOThKOKOThThThKOKOMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQlf +lfOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQBENcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcCUNcNcCUNcNcNcNcCUNcNcNcNcOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIkThKOKOKOKOKOKOThKOKOKOMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcNcNcNcNcNcNcNcNcNcNcNcNcBEOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQCUNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQNcOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcCUNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQMzMzThMzThMzThMzThGvThMzThMzThMzThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQMzMzThThThGvThThThGvThThThGvThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNceieiOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQBEOQNcOQNcNcNcOQBEOQOQOQOQOQNcNcNcNcNcOQNcOQOQOQOQOQOQOQMzMzMzIKMzThMzThMzGvMzThMzThMzIKMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNceieiOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQBEOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQMzMzThThThThGvThThGvThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieiOQOQOQOQeiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQMzMzThMzThMzThMzThGvThMzJRMzThMzThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzfKfKMzMzMzfKfKMzMzMzfKfKMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieiOQOQOQOQeieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcNcNcNcNcNcNcNcOQCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQMzMzThGvThThThThThGvThGvThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieiOQOQeieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcOQNcNcNcNcNcNcNcxmNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcCUNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQMzMzMzThMzIKMzThMzGvMzThMzThMzThMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiDkeieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQMzMzThThThThGvThThGvThThThGvThThThMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcDqFNNcNcxmNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcLBNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQMzMzThMzThMzThMzThGvThMzThMzThMzThMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiCleieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcxmNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQMzMzGvGvGvGvGvGvGvLUGvGvGvGvGvGvGvMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiDWeieieieiOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQMzMzThMzThMzThMzThGvThMzThMzThMzThMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzThLXThThLXThLXThThLXThMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQMzMzThThThThThGvThGvThThThThThGvThMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzHuHuHuHuHuHuHuHuHuHuHuMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcxmNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQMzMzMzMnMzThMzThMzGvMzThMzThMzThMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzHuHuHuHuHuHuHuHuHuHuHuMzMzNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiOQOQeieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcczThThThThThThThThGvThGvThThThThThMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThMzMzNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcczThThMzThMzJRMzThGvThMzThMzIKMzThMzMzMzMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMEhmThThThThThThThThThThThThczNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNceieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcczThThThThThThThThGvThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThThThThThThThThThThMzMzNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzThMzThMzThMzGvMzThMzThMzThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzHuHuHuHuHuHuHuHuHuHuHuMzMzOQNcNcNcNcNcOQOQOQNcNcNcNcNcDBxmNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzThThGvThThThThGvThThThThThThGvMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzHuHuHuHuHuHuHuHuHuHuHuMzMzOQOQOQNcNcNcNcNcOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcOQNcNcOQNcOQNcOQNcOQNcNcOQNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzThMzThMzThMzThGvThMzThMzMnMzThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThLXThThLXThLXThThLXThMzMzOQOQOQOQOQNcNcNcNcNcNcNcNcOQNcNcOQNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzThThThThThThThGvThThGvThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMRMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzThMZThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf +DblflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNnNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNnNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdNdlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflf "} diff --git a/modular_chomp/maps/southern_cross/southern_cross_defines.dm b/modular_chomp/maps/southern_cross/southern_cross_defines.dm index 87c34f7e5f..86a4a119a8 100644 --- a/modular_chomp/maps/southern_cross/southern_cross_defines.dm +++ b/modular_chomp/maps/southern_cross/southern_cross_defines.dm @@ -137,7 +137,6 @@ but they don't actually change anything about the load order list("Snow Field"), list("Maddness Lab"), list("Abandoned City"), - list("Distant Mining Facility"), list("Skyscraper") ) //CHOMPedit: Gateway maps. For now nothing fancy, just some already existing maps while we make our own. diff --git a/modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm b/modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm index 8e8feafaea..076000f1f4 100644 --- a/modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm +++ b/modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm @@ -20,7 +20,7 @@ #include "gateway/BaseBlep.dmm" #include "gateway/maddnesslab.dmm" #include "gateway/snowfield.dmm" -#include "gateway/hiddeneclipse.dmm" +// #include "gateway/hiddeneclipse.dmm" //needs remaping and energy is low. #include "../../virtual_reality/constructVR.dmm" #endif @@ -79,14 +79,14 @@ desc = "Asteroid base surrounded by carp" mappath = "modular_chomp/maps/southern_cross/submaps/gateway/carpfarm.dmm" associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination - +/* #include "gateway/hiddeneclipse.dm" /datum/map_template/sc_lateload/gateway/hiddeneclipse name = "Distant Mining Facility" desc = "Asteroid mining facility, lost to unknown horrors" mappath = "modular_chomp/maps/southern_cross/submaps/gateway/hiddeneclipse.dmm" associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination - +*/ //VR maps go here, tell me if theres a better way to load this // #include "virtual_reality/constructVR.dm" Virtual Reality areas included by default. //#include "modular_chomp/maps/virtual_reality/constructVR.dm" //Included in .dme diff --git a/modular_chomp/maps/submaps/surface_submaps/wilderness/PirateLake.dmm b/modular_chomp/maps/submaps/surface_submaps/wilderness/PirateLake.dmm new file mode 100644 index 0000000000..bbf2b16313 --- /dev/null +++ b/modular_chomp/maps/submaps/surface_submaps/wilderness/PirateLake.dmm @@ -0,0 +1,68 @@ +"a" = (/turf/template_noop,/area/template_noop) +"c" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"d" = (/obj/structure/table/woodentable{dir = 4; flipped = 1; icon_state = "wood_flip0"},/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"i" = (/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"l" = (/obj/structure/table/woodentable,/obj/item/storage/fancy/candle_box,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"n" = (/obj/structure/curtain/open/bed,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"o" = (/obj/structure/table/bench/sifwooden,/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"p" = (/obj/structure/closet,/obj/item/contraband,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"s" = (/obj/structure/table/woodentable,/obj/item/flame/candle/candelabra,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"t" = (/obj/structure/table/woodentable{dir = 8; flipped = 1; icon_state = "wood_flip0"},/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"u" = (/obj/structure/loot_pile/mecha/ripley/pirate,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"v" = (/obj/structure/table/bench/sifwooden,/mob/living/simple_mob/humanoid/pirate/ranged,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"x" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/submap/PirateLake) +"z" = (/turf/template_noop,/area/submap/PirateLake) +"C" = (/obj/structure/table/woodentable{flipped = 1; icon_state = "wood_flip0"},/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"D" = (/obj/structure/table/bench/sifwooden,/mob/living/simple_mob/humanoid/pirate/las,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"I" = (/turf/simulated/floor/water/deep,/area/submap/PirateLake) +"J" = (/turf/simulated/floor/outdoors/grass/sif/forest,/area/submap/PirateLake) +"K" = (/turf/simulated/wall/wood,/area/submap/PirateLake) +"L" = (/obj/structure/closet,/obj/item/clothing/suit/space/pirate,/obj/item/clothing/suit/space/pirate,/obj/item/clothing/head/helmet/space/pirate,/obj/item/clothing/head/helmet/space/pirate,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"N" = (/obj/structure/table/woodentable,/obj/structure/safe/floor,/obj/item/gun/projectile/deagle/gold,/obj/item/soap/golden_soap,/obj/item/reagent_containers/food/drinks/golden_cup,/obj/item/toy/plushie/gold_eastdragon,/obj/item/slime_extract/gold,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"Q" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"R" = (/obj/structure/table/woodentable{dir = 1; flipped = 1; icon_state = "wood_flip0"},/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) +"T" = (/turf/simulated/floor/water,/area/submap/PirateLake) +"X" = (/obj/structure/table/bench/sifwooden,/turf/simulated/floor/wood/turfpack/sif,/area/submap/PirateLake) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +azzzzzzzzzzzxxxxxxxxxxxxxxxxzzzzzzzzzzza +azzzzzzzzxxxxTTTTTTTTTTTTTTxxxzzzzzzzzza +azzzzzxxxxTTTTTTTTTTTTTTTTTTTxxzzzzzzzza +azzzzxxTTTTTTTTIIIIIIIIIITTTTTxxxzzzzzza +azzzzxTTTTTTTIIIIIIIIIIIIIITTTTTxxxzzzza +azzzxxTTTTIIIIIITTTTTTTIIIIIITTTTTxxzzza +azzxxTTTIIIIIIITTTTTTTTTTIIIIITTTTTxxzza +azxxTTTIIIIIITTTxxxxxxxTTTTTIIIITTTTxxza +azxTTTIIIIIITTTxxKRRRRKxxTTTTTIIIITTTxza +azxTTTIIIIITTxxxJKiviiKJxxxxTTTIIITTTxxa +azxTTTIIIITTxxJJJKiiiiKJJJJxxxTTIIITTTxa +axxTTTIIIITTxJJJKKKnnKKKKJJJJxTTIIITTTxa +axTTTIIIITTxxKKKKuiiiQppKKKKJxTTIITTTxxa +axTTTIIIITTxJtiiKiiiXiiiKiidJxTTIITTTxza +axTTTIIIITTxJtviniiscciiniidJxxTTITTTxza +axTTTIIIITTxJtiiniDcNcXinivdJJxTTITTTxza +axTTTIIIITTxJtiiKiiccliiKiidJJxTTITTTxza +axTTTIIIITTxxKKKKiiiDiiiKKKKJxxTTITTTxza +axxTTTIIIITTxxJJKiiiiiiiKKKKxxTTIITTTxza +azxxTTTIIIITTxJJKiiiiKnKKKKJxTTIIITTTxxa +azzxTTTIIIITTxxJKQiiQKiciLKJxTTIIIITTTxa +azzxTTTIIIIITTxJKKnnKKicoiKxxTTIIIITTTxa +azzxTTTIIIIITTxxKiiiiKicciKxTTIIIIITTTxa +azzxTTTIIIIIITTxKiviiKiiiiKxTTIIIITTTxxa +azzxxTTTIIIIITTxKCCCCKKKKKKTTIIIIITTTxza +azzzxTTTIIIIIITTxxJJJJJJJxxTTIIIIITTTxza +azzzxxTTTIIIIIITTxJJJJJJJxTTIIIIITTTxxza +azzzzxTTTIIIIIITTxxxJJxxxxTTIIIIITTTxzza +azzzzxxTTTIIIIIITTTxxxxTTTTIIIIIITTTxzza +azzzzzxTTTIIIIIIITTTTTTTTTIIIIITTTTxxzza +azzzzzxTTTIIIIIIIIITTTTIIIIIIITTTTTxzzza +azzzzzxxTTTTIIIIIIIIIIIIIIIITTTTTTxxzzza +azzzzzzxxTTTTIIIIIIIIIIIIIIITTTxxxxzzzza +azzzzzzzxxTTTTTIIIIIIIIIIITTTTxxzzzzzzza +azzzzzzzzxxxTTTTTTTTTTTTTTTTxxxzzzzzzzza +azzzzzzzzzzxxTTTTTTTTTTTTTTTxzzzzzzzzzza +azzzzzzzzzzzxxxTTTTTTTTTTTxxxzzzzzzzzzza +azzzzzzzzzzzzzxxxxxxxxxxxxxzzzzzzzzzzzza +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/modular_chomp/maps/submaps/surface_submaps/wilderness/VolcanicFissure.dmm b/modular_chomp/maps/submaps/surface_submaps/wilderness/VolcanicFissure.dmm new file mode 100644 index 0000000000..444bdadceb --- /dev/null +++ b/modular_chomp/maps/submaps/surface_submaps/wilderness/VolcanicFissure.dmm @@ -0,0 +1,57 @@ +"a" = (/turf/template_noop,/area/template_noop) +"d" = (/obj/structure/loot_pile/surface/alien/end,/turf/simulated/shuttle/floor/alienplating/external,/area/template_noop) +"l" = (/turf/simulated/floor/lava/outdoors,/area/template_noop) +"p" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"q" = (/obj/structure/cliff/automatic/corner{dir = 10},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"s" = (/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"t" = (/obj/effect/map_effect/interval/effect_emitter/smoke/fire,/turf/simulated/floor/lava/outdoors,/area/template_noop) +"v" = (/obj/structure/cliff/automatic{dir = 5},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"w" = (/obj/structure/cliff/automatic,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"y" = (/obj/structure/cliff/automatic/corner{dir = 9},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"A" = (/obj/structure/cliff/automatic{dir = 6},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"B" = (/obj/item/prop/alien/junk,/turf/simulated/shuttle/floor/alienplating/external,/area/template_noop) +"D" = (/turf/simulated/shuttle/floor/alienplating/external,/area/template_noop) +"E" = (/obj/structure/cliff/automatic{dir = 10},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"J" = (/obj/structure/cliff/automatic{dir = 4},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"L" = (/obj/structure/cliff/automatic{dir = 9},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"O" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"P" = (/obj/structure/cliff/automatic/corner{dir = 6},/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"Q" = (/obj/item/prop/alien/junk,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) +"S" = (/obj/random/tool/alien,/turf/simulated/shuttle/floor/alienplating/external,/area/template_noop) +"V" = (/obj/structure/cliff/automatic/corner,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/template_noop) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaLwwwwwwwwwwwvaaaaaaaaaa +aaaaaaaLwwylllllllllllVwwvaaaaaaa +aaaaLwwyllllllllllQOlllllVwwvaaaa +aLwwylllllllltlllOOOllllllllVwwva +aslllllllllllllllOOOOOlllllllllJa +asllllltllOOllllllOOOOOlllllltlJa +asllllllOOOQOllllllOOOtOlllllllJa +aslllllOOOOOlllDllllOOOOOllllllJa +asllllOOOOllllDDdlllOOOOOllDDllJa +aslllOlOOllllDDDDDllOOOlOllSDllJa +asllOOOOllllDDDBDlllOOOOlllDDllJa +asllOOOllllllDDDlllOOOOllllDDllJa +aslltOOlllllllDlllOOOOOOOltllllJa +asllOOOOlllllllllOOOtOOOOOlllllJa +asllOOlOOltlllllOOOOOOlOOOlllllJa +asllOOOOOOlllllOOOOOllOOOOOllllJa +aslllQOOOOOlllOOlOOllllOOlOOlllJa +asllllOlOOOOllOOOOOlllllOOOOOOlJa +aslllllOOlOOOOOlOOllDlllOOOtOOlJa +aslllllllOOOOOOOlllDDBlllOOOQOlJa +asllSDDDlllOOtOlllDDDDDlllOOOllJa +asllDDDDllllOOOllllDDDDDlllllllJa +aslllltllllllOOOllllDDdllllllllJa +aEqllllllllllOOOOllllDltllllllPAa +aaEpppqlllllllOOOlllllllllPpppAaa +aaaaaaEppqlllllOOOlllllPppAaaaaaa +aaaaaaaaaEppppqOOOPppppAaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness.dm b/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness.dm index bd541d766b..163a5d7e35 100644 --- a/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness.dm +++ b/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness.dm @@ -515,6 +515,24 @@ mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm" cost = 20 +/datum/map_template/surface/wilderness/deep/AbandonedLab + name = "Abandoned Lab" + desc = "Experiments gone wrong! Be wary of the test subjects gone rogue." + mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm" + cost = 20 + +/datum/map_template/surface/wilderness/deep/VolcanicFissure + name = "Volcanic Fissure" + desc = "Strange alien tech has caused magma to surface, creating a pit of lava." + mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/VolcanicFissure.dmm" + cost = 20 + +/datum/map_template/surface/wilderness/deep/PirateLake + name = "Volcanic Fissure" + desc = "Yarr, explorers my expirence diffcults when facing defenses of water and table." + mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/PirateLake.dmm" + cost = 20 + /*==Disabled==/ /datum/map_template/surface/wilderness/deep/Boombase //YW Edit remove boombase diff --git a/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm b/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm index cbd3b3ae4a..7dbf1463a6 100644 --- a/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm +++ b/modular_chomp/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm @@ -178,6 +178,10 @@ name = "POI Wilderness - Otie Shelter" ambience = AMBIENCE_HIGHSEC +/area/submap/PirateLake + name = "POI Wilderness - Pirate Lake" + ambience = AMBIENCE_HIGHSEC + /area/submap/Rocky1 name = "POI Wilderness - Rocky Demise" ambience = AMBIENCE_SIF @@ -229,3 +233,7 @@ /area/submap/XenoHive name = "POI Wilderness - Xeno Hive" ambience = AMBIENCE_RUINS + +/area/submap/VolcanicFissure + name = "POI Wilderness - Volcanic Fissure" + ambience = AMBIENCE_RUINS \ No newline at end of file diff --git a/modular_chomp/maps/virtual_reality/constructVR.dmm b/modular_chomp/maps/virtual_reality/constructVR.dmm index c3e67b41ed..51202e18c6 100644 --- a/modular_chomp/maps/virtual_reality/constructVR.dmm +++ b/modular_chomp/maps/virtual_reality/constructVR.dmm @@ -48,8 +48,8 @@ /area/vr/powered/mall) "acI" = ( /obj/machinery/button/remote/blast_door{ - id = "cringeeasteregg"; dir = 4; + id = "cringeeasteregg"; pixel_y = 24 }, /turf/unsimulated/floor/lino/turfpack/station{ @@ -78,8 +78,8 @@ name = "hacked autolathe" }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "afn" = ( @@ -149,8 +149,8 @@ "ajB" = ( /obj/structure/table/rack/shelf, /obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = 0; - pixel_x = -7 + pixel_x = -7; + pixel_y = 0 }, /obj/item/reagent_containers/food/condiment/mustard{ pixel_x = -2 @@ -194,8 +194,8 @@ "akN" = ( /obj/machinery/vending/foodasian{ dir = 4; - pixel_y = 0; - pixel_x = -4 + pixel_x = -4; + pixel_y = 0 }, /obj/machinery/light{ dir = 8 @@ -207,9 +207,9 @@ dir = 1 }, /turf/simulated/floor/water/beach{ - temperature = 293.15; + dir = 6; outdoors = -1; - dir = 6 + temperature = 293.15 }, /area/vr/powered/mall/vw) "alb" = ( @@ -284,8 +284,8 @@ /obj/machinery/light/lamppost, /turf/simulated/floor/outdoors/sidewalk/side{ movement_cost = 0; - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "anx" = ( @@ -348,8 +348,8 @@ /obj/structure/closet/crate/bin, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "arT" = ( @@ -605,27 +605,27 @@ pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 2; - pixel_x = -3 + pixel_x = -3; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 2; - pixel_x = 4 + pixel_x = 4; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/structure/window/reinforced{ dir = 1 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = -2; - pixel_x = -1 + pixel_x = -1; + pixel_y = -2 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = -4; - pixel_x = 4 + pixel_x = 4; + pixel_y = -4 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -653,8 +653,8 @@ /area/vr/powered/dungeon) "aEi" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /obj/structure/railing/grey, /obj/structure/prop/statue/pillar, @@ -839,12 +839,12 @@ /area/vr/powered) "aLl" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "QTstorage3"; name = "Bolt Control"; pixel_x = -10; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/structure/toilet{ dir = 8 @@ -887,8 +887,8 @@ /area/vr/powered/mall/secondlife) "aMp" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 6 + dir = 6; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/ricecake, /turf/simulated/floor/wood/alt/panel, @@ -1007,8 +1007,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "aTw" = ( @@ -1024,8 +1024,8 @@ "aTO" = ( /obj/structure/table/standard, /obj/item/surgical/cautery{ - pixel_y = 0; - pixel_x = 2 + pixel_x = 2; + pixel_y = 0 }, /obj/item/surgical/surgicaldrill, /turf/simulated/floor/tiled/white, @@ -1205,18 +1205,18 @@ /area/vr/powered) "aZS" = ( /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; + brightness_color = "#e060e0"; brightness_color_ns = "#9C439C"; light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" + name = "tinted light fixture"; + overlay_color = "#e060e0" }, /turf/simulated/floor/cult, /area/vr/powered/cult) "aZV" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 1 + dir = 1; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/chickenmomo, /turf/simulated/floor/wmarble, @@ -1257,8 +1257,8 @@ "bbR" = ( /obj/structure/sink/kitchen{ dir = 8; - pixel_y = 0; - pixel_x = -12 + pixel_x = -12; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -1273,12 +1273,12 @@ }, /obj/effect/floor_decal/rust, /obj/item/bone/skull{ - pixel_y = -11; - pixel_x = 5 + pixel_x = 5; + pixel_y = -11 }, /obj/item/clothing/head/that{ - pixel_y = -3; - pixel_x = 6 + pixel_x = 6; + pixel_y = -3 }, /turf/simulated/floor/plating, /area/vr/powered/dungeon) @@ -1332,8 +1332,8 @@ }, /obj/random/cash/huge, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "bgo" = ( @@ -1359,8 +1359,8 @@ icon_state = "beartrap1" }, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "bhs" = ( @@ -1371,8 +1371,8 @@ /area/vr/powered/space/sciship) "bhB" = ( /obj/structure/bed/chair/comfy/red{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /obj/structure/plushie/ian{ dir = 4 @@ -1455,12 +1455,12 @@ /area/vr/powered/cafe) "bky" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "QTstorage4"; name = "Bolt Control"; pixel_x = -10; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/structure/toilet{ dir = 8 @@ -1576,8 +1576,8 @@ /area/vr/powered) "bqj" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 8 + dir = 8; + id = "vrsushitrain" }, /obj/structure/plasticflaps, /turf/simulated/floor/wood/alt/panel, @@ -1601,8 +1601,8 @@ icon_state = "beartrap1" }, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "brW" = ( @@ -1638,13 +1638,13 @@ /area/vr/outdoors/powered) "btN" = ( /obj/machinery/transhuman/autoresleever{ - respawn = 0; - vore_respawn = 0; - equip_body = 1; - name = "VR Ghost Cafe Spawn"; + default_job = "VR Avatar"; desc = "Clicking on this as a ghost will spawn you in as a NPC exclusive to the VR world loaded into the station."; + equip_body = 1; ghost_spawns = 1; - default_job = "VR Avatar" + name = "VR Ghost Cafe Spawn"; + respawn = 0; + vore_respawn = 0 }, /turf/simulated/floor/wood, /area/vr/powered/cafe) @@ -1765,8 +1765,8 @@ /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/food/snacks/sliceable/sharkchunk, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "bAT" = ( @@ -1854,19 +1854,19 @@ dir = 4 }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "bEw" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/drinks/coffee{ - pixel_y = 4; - pixel_x = 4 + pixel_x = 4; + pixel_y = 4 }, /obj/item/reagent_containers/food/drinks/coffee{ - pixel_y = -5; - pixel_x = -10 + pixel_x = -10; + pixel_y = -5 }, /turf/simulated/floor/wood/alt/tile, /area/vr/powered/mall) @@ -1892,16 +1892,16 @@ pixel_y = 1 }, /obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 + pixel_x = -6; + pixel_y = 11 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 + pixel_x = 9; + pixel_y = 11 }, /turf/simulated/floor/carpet/geo, /area/vr/powered/mall/vw) @@ -2002,8 +2002,8 @@ /area/vr/powered/vet) "bKW" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 2 + dir = 2; + pixel_y = 0 }, /turf/simulated/floor/carpet/sblucarpet, /area/vr/powered/mall/dorms/secondlife) @@ -2037,26 +2037,26 @@ "bMa" = ( /obj/structure/table/rack/wood, /obj/item/clothing/under/color/yellow{ - pixel_y = -2; - pixel_x = -7 + pixel_x = -7; + pixel_y = -2 }, /obj/item/clothing/under/color/rainbow{ pixel_y = -2 }, /obj/item/clothing/under/color/lightbrown{ - pixel_y = -2; - pixel_x = 8 + pixel_x = 8; + pixel_y = -2 }, /obj/item/clothing/under/color/green{ - pixel_y = 4; - pixel_x = -8 + pixel_x = -8; + pixel_y = 4 }, /obj/item/clothing/under/color/darkred{ pixel_y = 4 }, /obj/item/clothing/under/color/blue{ - pixel_y = 4; - pixel_x = 8 + pixel_x = 8; + pixel_y = 4 }, /obj/machinery/light{ dir = 1 @@ -2194,20 +2194,20 @@ /obj/item/clothing/under/skinsuit/leotard/gray, /obj/item/clothing/under/skinsuit/fem/leotard/gray, /obj/item/clothing/under/skinsuit{ - pixel_y = 0; - pixel_x = 8 + pixel_x = 8; + pixel_y = 0 }, /obj/item/clothing/accessory/collar/shock, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/melee/fluff/holochain/mass, /obj/machinery/light{ - dir = 4; - nightshift_enabled = 1; brightness_color = "#e060e0"; - light_color = "#e060e0"; - overlay_color = "#e060e0"; brightness_color_ns = "#9C439C"; - name = "tinted light fixture" + dir = 4; + light_color = "#e060e0"; + name = "tinted light fixture"; + nightshift_enabled = 1; + overlay_color = "#e060e0" }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -2227,8 +2227,8 @@ /area/vr/outdoors/powered) "bRG" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 10 + dir = 10; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 8 @@ -2257,31 +2257,31 @@ }, /obj/structure/table/rack/wood, /obj/item/clothing/shoes/hitops/orange{ - pixel_y = -8; - pixel_x = -8 + pixel_x = -8; + pixel_y = -8 }, /obj/item/clothing/shoes/hitops/purple{ pixel_y = -8 }, /obj/item/clothing/shoes/hitops/red{ - pixel_y = -8; - pixel_x = 4 + pixel_x = 4; + pixel_y = -8 }, /obj/item/clothing/shoes/black/cuffs{ - pixel_y = 4; - pixel_x = -10 + pixel_x = -10; + pixel_y = 4 }, /obj/item/clothing/shoes/black/cuffs/blue{ - pixel_y = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/item/clothing/shoes/black/cuffs/octavious{ pixel_x = 2; pixel_y = 4 }, /obj/item/clothing/shoes/black/cuffs/red{ - pixel_y = 4; - pixel_x = 8 + pixel_x = 8; + pixel_y = 4 }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -2357,10 +2357,10 @@ name = "Cargo Hold" }, /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /obj/structure/fans/tiny, @@ -2417,17 +2417,17 @@ "bZo" = ( /obj/structure/table/fancyblack, /obj/item/bikehorn/tinytether{ - pixel_y = 5; - pixel_x = 2 + pixel_x = 2; + pixel_y = 5 }, /obj/item/bikehorn/tinytether{ - pixel_y = 11; - pixel_x = 8 + pixel_x = 8; + pixel_y = 11 }, /obj/item/paperplane{ dir = 4; - pixel_y = 2; - pixel_x = -9 + pixel_x = -9; + pixel_y = 2 }, /turf/simulated/floor/wood, /area/vr/powered/cult) @@ -2458,8 +2458,8 @@ /area/vr/powered/cult) "cbm" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/concrete{ outdoors = 0 @@ -2757,8 +2757,8 @@ /area/vr/powered/cult) "clV" = ( /obj/item/toy/plushie/mouse{ - pixel_y = 2; - pixel_x = 6 + pixel_x = 6; + pixel_y = 2 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -2769,8 +2769,8 @@ /obj/random/cash/huge, /obj/random/cash/huge, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "cmz" = ( @@ -2794,8 +2794,8 @@ }, /obj/item/reagent_containers/food/condiment/small/saltshaker, /obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /turf/simulated/floor/wood/alt/tile, /area/vr/powered/mall) @@ -2897,8 +2897,8 @@ /area/vr/space) "crd" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 6 + dir = 6; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/chickenmomo, /turf/simulated/floor/wood/alt/panel, @@ -2967,8 +2967,8 @@ /area/vr/outdoors/powered) "cuS" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /obj/structure/railing/grey, /obj/machinery/light/lamppost, @@ -2991,12 +2991,6 @@ /obj/item/stack/material/gold, /turf/simulated/floor/flock, /area/vr/powered/rocks) -"cwz" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 - }, -/area/vr/outdoors/powered) "cwE" = ( /obj/machinery/vending/wardrobe/cargodrobe{ req_access = null @@ -3019,8 +3013,8 @@ "cxq" = ( /obj/structure/flora/rocks2, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "cyE" = ( @@ -3039,24 +3033,24 @@ "czN" = ( /obj/structure/table/marble, /obj/item/storage/box/glasses/square{ - pixel_y = 6; - pixel_x = 6 + pixel_x = 6; + pixel_y = 6 }, /obj/item/storage/box/glasses/square{ - pixel_y = -5; - pixel_x = 6 + pixel_x = 6; + pixel_y = -5 }, /obj/item/storage/box/glasses/square{ - pixel_y = 0; - pixel_x = 6 + pixel_x = 6; + pixel_y = 0 }, /turf/simulated/floor/carpet/brown, /area/vr/powered/mall) "cAc" = ( /obj/random/pottedplant, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -3089,8 +3083,8 @@ pixel_x = -6 }, /obj/random/cigarettes{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/bar) @@ -3149,11 +3143,11 @@ /area/vr/powered/mall/backrooms) "cFc" = ( /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; + brightness_color = "#e060e0"; brightness_color_ns = "#9C439C"; light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" + name = "tinted light fixture"; + overlay_color = "#e060e0" }, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -3163,8 +3157,8 @@ "cFf" = ( /obj/random/trash, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "cFn" = ( @@ -3240,8 +3234,8 @@ /obj/effect/floor_decal/corner/black/diagonal, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/yellow, /area/vr/powered/mall/dorms/dorms4) @@ -3357,10 +3351,10 @@ /area/vr/powered/space/sciship) "cOM" = ( /obj/machinery/button/remote/blast_door{ + dir = 1; id = "vrsewers1"; pixel_x = -22; - pixel_y = -7; - dir = 1 + pixel_y = -7 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, @@ -3571,27 +3565,27 @@ pixel_y = 9 }, /obj/item/handcuffs/legcuffs/fuzzy{ - pixel_y = 12; - pixel_x = -3 + pixel_x = -3; + pixel_y = 12 }, /obj/item/clothing/under/fluff/latexmaid{ - pixel_y = -4; - pixel_x = -8 + pixel_x = -8; + pixel_y = -4 }, /obj/item/clothing/mask/muzzle/ballgag{ - pixel_y = -9; - pixel_x = 9 + pixel_x = 9; + pixel_y = -9 }, /obj/item/clothing/mask/muzzle/ballgag/ringgag{ - pixel_y = -1; - pixel_x = 9 + pixel_x = 9; + pixel_y = -1 }, /obj/item/handcuffs/fuzzy{ pixel_y = 9 }, /obj/item/handcuffs/legcuffs/fuzzy{ - pixel_y = 12; - pixel_x = -3 + pixel_x = -3; + pixel_y = 12 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -3630,8 +3624,8 @@ dir = 8 }, /obj/structure/sign/atmos{ - pixel_y = 0; - pixel_x = 32 + pixel_x = 32; + pixel_y = 0 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -3660,36 +3654,36 @@ dir = 2 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = -5; - pixel_x = 4 + pixel_x = 4; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = 7; - pixel_x = 4 + pixel_x = 4; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = 3; - pixel_x = 4 + pixel_x = 4; + pixel_y = 3 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = -1; - pixel_x = 4 + pixel_x = 4; + pixel_y = -1 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = 7; - pixel_x = -5 + pixel_x = -5; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = -5; - pixel_x = -5 + pixel_x = -5; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = -1; - pixel_x = -5 + pixel_x = -5; + pixel_y = -1 }, /obj/item/reagent_containers/food/snacks/cinnamonroll{ - pixel_y = 3; - pixel_x = -5 + pixel_x = -5; + pixel_y = 3 }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -3768,8 +3762,8 @@ "dgD" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = -2; - dir = 1 + dir = 1; + pixel_y = -2 }, /turf/simulated/floor/carpet/geo, /area/vr/powered/mall) @@ -3792,8 +3786,8 @@ /area/vr/powered/dungeon) "dhC" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 1 + dir = 1; + id = "vrsushitrain" }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -3816,13 +3810,13 @@ /area/vr/powered/dungeon) "diP" = ( /obj/machinery/light{ - dir = 2; - nightshift_enabled = 1; brightness_color = "#e060e0"; - light_color = "#e060e0"; - overlay_color = "#e060e0"; brightness_color_ns = "#9C439C"; - name = "tinted light fixture" + dir = 2; + light_color = "#e060e0"; + name = "tinted light fixture"; + nightshift_enabled = 1; + overlay_color = "#e060e0" }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -3923,8 +3917,8 @@ /area/vr/powered/mall/backrooms) "dlP" = ( /obj/structure/showcase/sign{ - name = "WARNING: OSHA VIOLATIONS"; - desc = "Don't Fall." + desc = "Don't Fall."; + name = "WARNING: OSHA VIOLATIONS" }, /turf/simulated/floor/tiled/asteroid_steel{ outdoors = 1; @@ -3998,44 +3992,44 @@ "dpb" = ( /obj/structure/sink/kitchen{ dir = 8; - pixel_y = 0; - pixel_x = -12 + pixel_x = -12; + pixel_y = 0 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) "dpc" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = 6 + pixel_x = 6; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = -7 + pixel_x = -7; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = -3 + pixel_x = -3; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = 2 + pixel_x = 2; + pixel_y = 8 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = 3 + pixel_x = 3; + pixel_y = -4 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = -9 + pixel_x = -9; + pixel_y = -4 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = -5 + pixel_x = -5; + pixel_y = -4 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = -1 + pixel_x = -1; + pixel_y = -4 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -4052,12 +4046,12 @@ /area/vr/powered) "drt" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "QTstorage5"; name = "Bolt Control"; pixel_x = -10; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light/small{ dir = 4 @@ -4112,8 +4106,8 @@ pixel_y = -8 }, /obj/item/toy/plushie/teshari/y_yw{ - pixel_y = -5; - pixel_x = 7 + pixel_x = 7; + pixel_y = -5 }, /obj/item/toy/plushie/snakeplushie{ pixel_y = -21 @@ -4214,8 +4208,8 @@ /area/vr/powered/space/whiteship) "dzQ" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 2 + dir = 2; + pixel_y = 0 }, /turf/simulated/floor/carpet/purple, /area/vr/powered/mall/dorms/secondlife2) @@ -4266,8 +4260,8 @@ dir = 4 }, /obj/item/robot_parts/head{ - pixel_y = -2; - pixel_x = -3 + pixel_x = -3; + pixel_y = -2 }, /turf/unsimulated/floor/lino/turfpack/station{ color = "#ffe9ab" @@ -4314,12 +4308,12 @@ "dCS" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmall2"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light_switch{ pixel_x = 11; @@ -4391,8 +4385,8 @@ /obj/effect/floor_decal/corner/black/diagonal, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/old_cargo/purple, /area/vr/powered/mall/dorms/dorms2) @@ -4955,8 +4949,8 @@ /area/vr/powered/mall) "dXV" = ( /obj/effect/simple_portal/linked{ - portal_id = 70; - name = "Fast Travel to City" + name = "Fast Travel to City"; + portal_id = 70 }, /turf/simulated/floor/concrete{ outdoors = 1 @@ -5010,8 +5004,8 @@ "dYY" = ( /obj/structure/prop/rock/small/wateralt, /turf/simulated/floor/water{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/outdoors/powered) "dZc" = ( @@ -5044,23 +5038,23 @@ pixel_y = 3 }, /obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = -10 + pixel_x = -10; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/eggroll{ pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = 4 + pixel_x = 4; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = 8 + pixel_x = 8; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = -5 + pixel_x = -5; + pixel_y = 7 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -5149,8 +5143,8 @@ "efo" = ( /obj/structure/railing/grey, /obj/structure/railing/grey{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /obj/structure/prop/statue/pillar, /turf/simulated/floor/concrete{ @@ -5557,12 +5551,12 @@ icon_scale_y = 0.5 }, /obj/item/toy/plushie/mouse{ - pixel_y = 2; - pixel_x = 6 + pixel_x = 6; + pixel_y = 2 }, /obj/item/trash/cigbutt{ - pixel_y = 2; - pixel_x = -9 + pixel_x = -9; + pixel_y = 2 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -5626,8 +5620,8 @@ pixel_y = 6 }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "eAf" = ( @@ -5638,8 +5632,8 @@ /area/vr/powered/vendor) "eAn" = ( /mob/living/simple_mob/construct/harvester{ - dir = 8; - ai_holder_type = null + ai_holder_type = null; + dir = 8 }, /turf/simulated/floor/redgrid/off, /area/vr/powered/cult) @@ -5674,8 +5668,8 @@ /area/vr/powered/mall/secondlife) "eCs" = ( /turf/simulated/floor/water/pool{ - temperature = 293.15; - outdoors = 1 + outdoors = 1; + temperature = 293.15 }, /area/vr/outdoors/powered) "eCJ" = ( @@ -5683,8 +5677,8 @@ dir = 4 }, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "eCT" = ( @@ -5873,8 +5867,8 @@ /area/vr/powered/mall) "eGQ" = ( /obj/machinery/door/airlock/freezer{ - name = "Restroom Stall"; - id_tag = "QTstorage4" + id_tag = "QTstorage4"; + name = "Restroom Stall" }, /turf/simulated/floor/tiled/old_tile, /area/vr/powered/mall/secondlife) @@ -5926,13 +5920,10 @@ /turf/simulated/floor/wood, /area/vr/powered/mall) "eIg" = ( -/mob/living/simple_mob/humanoid/merc/ranged/sniper{ - special_attack_max_range = 15; - ai_holder_type = /datum/ai_holder/simple_mob/merc/eclipse/ranged/sniper - }, +/mob/living/simple_mob/humanoid/merc/ranged/sniper, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "eIt" = ( @@ -5969,8 +5960,8 @@ /area/vr/powered/mall) "eIH" = ( /obj/item/toy/plushie/white_cat{ - pixel_y = 4; - pixel_x = 15 + pixel_x = 15; + pixel_y = 4 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -6174,12 +6165,12 @@ /area/vr/powered/rocks) "eRp" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmallSL3"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /turf/simulated/floor/carpet/purcarpet, /area/vr/powered/mall/dorms/secondlife3) @@ -6190,8 +6181,8 @@ /area/vr/powered/mall/dorms/secondlife5) "eRP" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /obj/structure/prop/statue/pillar, /turf/simulated/floor/concrete{ @@ -6207,8 +6198,8 @@ /area/vr/space) "eTl" = ( /obj/structure/bed/chair/sofa/right/brown{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/wmarble, /area/vr/powered/motel) @@ -6270,8 +6261,8 @@ "eWF" = ( /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 0; - pixel_x = 3 + pixel_x = 3; + pixel_y = 0 }, /obj/effect/floor_decal/corner/lime/border{ dir = 4 @@ -6405,12 +6396,12 @@ dir = 4 }, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; brightness_color = "#e060e0"; + brightness_color_ns = "#9C439C"; + dir = 4; + light_color = "#e060e0"; name = "tinted light fixture"; - dir = 4 + overlay_color = "#e060e0" }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -6495,8 +6486,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "ffL" = ( @@ -6564,12 +6555,12 @@ /obj/structure/table/reinforced, /obj/item/storage/box/wormcan, /obj/item/storage/box/wormcan{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /obj/item/storage/box/wormcan/deluxe{ - pixel_y = -1; - pixel_x = -6 + pixel_x = -6; + pixel_y = -1 }, /turf/simulated/floor/tiled, /area/vr/powered/gunshop) @@ -6591,8 +6582,8 @@ "fiJ" = ( /turf/simulated/floor/water/beach{ dir = 8; - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "fiL" = ( @@ -6617,8 +6608,8 @@ "fjR" = ( /obj/structure/prop/rock/round, /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "fjW" = ( @@ -6672,8 +6663,8 @@ "fmo" = ( /obj/random/cash/huge, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "fmB" = ( @@ -6712,16 +6703,16 @@ "fof" = ( /obj/structure/table/rack/shelf/steel, /obj/item/reagent_containers/food/snacks/chips{ - pixel_y = 2; - pixel_x = 2 + pixel_x = 2; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/chips{ - pixel_y = 2; - pixel_x = -7 + pixel_x = -7; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/chips{ - pixel_y = 2; - pixel_x = 9 + pixel_x = 9; + pixel_y = 2 }, /turf/simulated/floor/carpet/brown, /area/vr/powered/mall) @@ -6792,8 +6783,8 @@ dir = 4 }, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -6892,24 +6883,24 @@ "ftX" = ( /obj/structure/table/marble, /obj/item/material/kitchen/utensil/fork{ - pixel_y = 0; - pixel_x = -4 + pixel_x = -4; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork{ - pixel_y = 0; - pixel_x = -12 + pixel_x = -12; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork{ - pixel_y = 0; - pixel_x = -10 + pixel_x = -10; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork{ - pixel_y = 0; - pixel_x = -8 + pixel_x = -8; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork{ - pixel_y = 0; - pixel_x = -6 + pixel_x = -6; + pixel_y = 0 }, /obj/item/material/knife/plastic{ pixel_x = 6 @@ -7024,8 +7015,8 @@ "fyf" = ( /obj/structure/prop/rock/small/alt, /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "fyS" = ( @@ -7044,8 +7035,8 @@ }, /obj/random/pottedplant, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -7074,8 +7065,8 @@ /obj/structure/table/marble, /obj/item/material/kitchen/rollingpin, /obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 + pixel_x = 11; + pixel_y = 0 }, /obj/item/reagent_containers/food/condiment/enzyme, /obj/item/reagent_containers/glass/beaker, @@ -7227,8 +7218,8 @@ "fHm" = ( /obj/structure/table/standard, /obj/item/surgical/FixOVein{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /obj/item/surgical/bonegel{ pixel_x = -5; @@ -7259,8 +7250,8 @@ "fIO" = ( /obj/effect/floor_decal/corner/lightgrey/border/shifted, /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/concrete{ outdoors = 1 @@ -7277,8 +7268,8 @@ /area/vr/powered/space/sciship) "fKg" = ( /obj/structure/sign/directions/dorms{ - pixel_y = -6; - dir = 4 + dir = 4; + pixel_y = -6 }, /turf/simulated/wall/concrete, /area/vr/powered/mall) @@ -7320,51 +7311,51 @@ req_access = list(5) }, /obj/item/reagent_containers/food/snacks/cutlet{ - pixel_y = -5; - pixel_x = -6 + pixel_x = -6; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cutlet{ pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cutlet{ - pixel_y = -5; - pixel_x = 4 + pixel_x = 4; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cutlet{ - pixel_y = -5; - pixel_x = 7 + pixel_x = 7; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/bacon{ - pixel_y = 6; - pixel_x = -3 + pixel_x = -3; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/bacon{ - pixel_y = 6; - pixel_x = 9 + pixel_x = 9; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/bacon{ - pixel_y = 6; - pixel_x = 5 + pixel_x = 5; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/bacon{ - pixel_y = 6; - pixel_x = 1 + pixel_x = 1; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = 8; - pixel_x = 3 + pixel_x = 3; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = 8; - pixel_x = -8 + pixel_x = -8; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = 8; - pixel_x = -5 + pixel_x = -5; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = 8; - pixel_x = -1 + pixel_x = -1; + pixel_y = 8 }, /obj/effect/floor_decal/corner/lime/border{ dir = 8 @@ -7456,12 +7447,12 @@ /area/vr/outdoors/powered) "fRu" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/concrete{ outdoors = 0 @@ -7636,39 +7627,39 @@ }, /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 9 + pixel_x = 9; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 9; - pixel_x = -9 + pixel_x = -9; + pixel_y = 9 }, /obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 10; - pixel_x = -4 + pixel_x = -4; + pixel_y = 10 }, /obj/item/reagent_containers/food/snacks/chickenwing{ pixel_y = 9 }, /obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 3 + pixel_x = 3; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 7 + pixel_x = 7; + pixel_y = 8 }, /obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = 3 + pixel_x = 3; + pixel_y = 1 }, /obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = -10 + pixel_x = -10; + pixel_y = 1 }, /obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = -3 + pixel_x = -3; + pixel_y = 1 }, /obj/machinery/light{ dir = 8 @@ -7760,8 +7751,8 @@ /area/vr/powered/mall) "gfB" = ( /mob/living/simple_mob/construct/wraith{ - dir = 8; - ai_holder_type = null + ai_holder_type = null; + dir = 8 }, /turf/simulated/floor/redgrid/off, /area/vr/powered/cult) @@ -7794,8 +7785,8 @@ "ghU" = ( /obj/structure/urinal{ dir = 4; - pixel_y = 0; - pixel_x = -34 + pixel_x = -34; + pixel_y = 0 }, /turf/simulated/floor/tiled/old_tile, /area/vr/powered/mall) @@ -7941,8 +7932,8 @@ }, /obj/structure/table/steel_reinforced, /obj/item/cell/hyper{ - pixel_y = -2; - pixel_x = -4 + pixel_x = -4; + pixel_y = -2 }, /obj/item/cell/hyper{ pixel_y = 2 @@ -7964,8 +7955,8 @@ /area/vr/outdoors/powered) "gqG" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 5 + dir = 5; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/kitsuneudon{ pixel_y = 0 @@ -7975,8 +7966,8 @@ "gqM" = ( /obj/effect/decal/remains, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "grL" = ( @@ -8026,8 +8017,8 @@ }, /obj/structure/sink/kitchen{ dir = 8; - pixel_y = 0; - pixel_x = -12 + pixel_x = -12; + pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall) @@ -8055,8 +8046,8 @@ /area/vr/powered/mall) "gwT" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 1 + dir = 1; + id = "vrsushitrain" }, /obj/machinery/light{ dir = 8 @@ -8133,8 +8124,8 @@ /area/vr/powered/cult) "gBw" = ( /obj/machinery/door/airlock/freezer{ - name = "Restroom Stall"; - id_tag = "QTstorage1" + id_tag = "QTstorage1"; + name = "Restroom Stall" }, /turf/simulated/floor/tiled/old_tile, /area/vr/powered/mall/secondlife) @@ -8278,8 +8269,8 @@ "gGD" = ( /obj/structure/table/standard, /obj/item/surgical/hemostat{ - pixel_y = 0; - pixel_x = -4 + pixel_x = -4; + pixel_y = 0 }, /obj/item/surgical/retractor, /turf/simulated/floor/tiled/white, @@ -8331,8 +8322,8 @@ }, /obj/item/material/kitchen/rollingpin, /obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -8411,8 +8402,8 @@ /area/vr/powered/cult) "gOw" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 1 + dir = 1; + id = "vrsushitrain" }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -8580,8 +8571,8 @@ "gVQ" = ( /obj/structure/bed/pillowpile/orange, /obj/item/toy/plushie/purple_fox{ - pixel_y = -5; - pixel_x = 5 + pixel_x = 5; + pixel_y = -5 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -8644,19 +8635,19 @@ }, /obj/structure/table/rack/wood, /obj/item/clothing/shoes/sandals_elegant{ - pixel_y = -9; - pixel_x = -6 + pixel_x = -6; + pixel_y = -9 }, /obj/item/clothing/shoes/skater{ pixel_y = -8 }, /obj/item/clothing/shoes/sneakersblue{ - pixel_y = 4; - pixel_x = 4 + pixel_x = 4; + pixel_y = 4 }, /obj/item/clothing/shoes/sneakerspurple{ - pixel_y = 4; - pixel_x = -2 + pixel_x = -2; + pixel_y = 4 }, /obj/item/clothing/shoes/sneakersred{ pixel_x = -9; @@ -8724,12 +8715,12 @@ "hfi" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/glass/bottle/cinnamonpowder{ - pixel_y = 9; - pixel_x = 10 + pixel_x = 10; + pixel_y = 9 }, /obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 2; - pixel_x = 12 + pixel_x = 12; + pixel_y = 2 }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -8804,8 +8795,8 @@ /area/vr/powered/cult) "hgx" = ( /obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/outdoors/newdirt_nograss{ temperature = 293.15 @@ -8837,8 +8828,8 @@ "hiL" = ( /obj/structure/table/wooden_reinforced, /obj/item/reagent_containers/food/drinks/coffee{ - pixel_y = 6; - pixel_x = 5 + pixel_x = 5; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/soydope, /turf/simulated/floor/wood, @@ -8901,8 +8892,8 @@ /area/vr/powered) "hmv" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 8 + dir = 8; + id = "vrsushitrain" }, /obj/structure/window/reinforced, /turf/simulated/floor/wood/alt/panel, @@ -9117,8 +9108,8 @@ /area/vr/powered/mall/vw) "htW" = ( /mob/living/simple_mob/construct/harvester{ - dir = 1; - ai_holder_type = null + ai_holder_type = null; + dir = 1 }, /turf/simulated/floor/redgrid/animated, /area/vr/powered/cult) @@ -9146,8 +9137,8 @@ /obj/fiftyspawner/glass, /obj/fiftyspawner/glass, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "hvJ" = ( @@ -9419,23 +9410,23 @@ pixel_y = 0 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 4; - pixel_x = 5 + pixel_x = 5; + pixel_y = 4 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 9; - pixel_x = 9 + pixel_x = 9; + pixel_y = 9 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 6; - pixel_x = 7 + pixel_x = 7; + pixel_y = 6 }, /turf/unsimulated/shuttle/floor/purple, /area/vr/powered/mall/secondlife) "hIL" = ( /obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 8; - dir = 2 + dir = 2; + pixel_y = 8 }, /obj/structure/table/marble, /turf/simulated/floor/wood, @@ -9452,8 +9443,8 @@ /area/vr/powered/mall/dorms/dorms4) "hNG" = ( /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "hNK" = ( @@ -9487,8 +9478,8 @@ /area/vr/powered/mall/dorms/secondlife3) "hPd" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/outdoors/grass{ temperature = 293.15 @@ -9503,12 +9494,12 @@ /area/vr/powered/cult) "hPO" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmallSL1"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /turf/simulated/floor/carpet/sblucarpet, /area/vr/powered/mall/dorms/secondlife) @@ -9516,8 +9507,8 @@ /obj/random/cash/huge, /obj/random/cash/huge, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "hQk" = ( @@ -9615,8 +9606,8 @@ "hTV" = ( /obj/structure/table/woodentable, /obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -6; - pixel_x = 12 + pixel_x = 12; + pixel_y = -6 }, /turf/simulated/floor/wood, /area/vr/powered/bar) @@ -9681,12 +9672,12 @@ /obj/structure/table/darkglass, /obj/item/reagent_containers/pill/zoom, /obj/item/reagent_containers/pill/zoom{ - pixel_y = 7; - pixel_x = -1 + pixel_x = -1; + pixel_y = 7 }, /obj/item/reagent_containers/pill/zoom{ - pixel_y = 4; - pixel_x = 4 + pixel_x = 4; + pixel_y = 4 }, /obj/item/glass_extra/straw, /turf/simulated/floor/tiled/milspec/raised, @@ -9752,84 +9743,84 @@ health = 1e+006 }, /obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_y = -5; - pixel_x = 9 + pixel_x = 9; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_y = -5; - pixel_x = -7 + pixel_x = -7; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_y = -5; - pixel_x = -3 + pixel_x = -3; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_y = -5; - pixel_x = 1 + pixel_x = 1; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/cheesewedge{ - pixel_y = -5; - pixel_x = 6 + pixel_x = 6; + pixel_y = -5 }, /obj/fruitspawner/lettuce{ - pixel_y = 1; - pixel_x = 11 + pixel_x = 11; + pixel_y = 1 }, /obj/fruitspawner/lettuce{ - pixel_y = 1; - pixel_x = -7 + pixel_x = -7; + pixel_y = 1 }, /obj/fruitspawner/lettuce{ - pixel_y = 1; - pixel_x = -2 + pixel_x = -2; + pixel_y = 1 }, /obj/fruitspawner/lettuce{ - pixel_y = 1; - pixel_x = 3 + pixel_x = 3; + pixel_y = 1 }, /obj/fruitspawner/lettuce{ - pixel_y = 1; - pixel_x = 7 + pixel_x = 7; + pixel_y = 1 }, /obj/fruitspawner/tomato{ - pixel_y = 7; - pixel_x = 11 + pixel_x = 11; + pixel_y = 7 }, /obj/fruitspawner/tomato{ - pixel_y = 7; - pixel_x = -8 + pixel_x = -8; + pixel_y = 7 }, /obj/fruitspawner/tomato{ - pixel_y = 7; - pixel_x = -3 + pixel_x = -3; + pixel_y = 7 }, /obj/fruitspawner/tomato{ - pixel_y = 7; - pixel_x = 2 + pixel_x = 2; + pixel_y = 7 }, /obj/fruitspawner/tomato{ - pixel_y = 7; - pixel_x = 7 + pixel_x = 7; + pixel_y = 7 }, /obj/fruitspawner/onion{ - pixel_y = 12; - pixel_x = 10 + pixel_x = 10; + pixel_y = 12 }, /obj/fruitspawner/onion{ - pixel_y = 12; - pixel_x = -9 + pixel_x = -9; + pixel_y = 12 }, /obj/fruitspawner/onion{ - pixel_y = 12; - pixel_x = -4 + pixel_x = -4; + pixel_y = 12 }, /obj/fruitspawner/onion{ - pixel_y = 12; - pixel_x = 1 + pixel_x = 1; + pixel_y = 12 }, /obj/fruitspawner/onion{ - pixel_y = 12; - pixel_x = 5 + pixel_x = 5; + pixel_y = 12 }, /obj/effect/floor_decal/corner/lime/border{ dir = 8 @@ -9860,12 +9851,12 @@ /area/vr/powered/constore) "iag" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmallSL2"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /turf/simulated/floor/carpet/purple, /area/vr/powered/mall/dorms/secondlife2) @@ -10121,8 +10112,8 @@ "ijw" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = 1; - pixel_x = -4 + pixel_x = -4; + pixel_y = 1 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ pixel_x = 13; @@ -10139,12 +10130,12 @@ pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -2; - pixel_x = 6 + pixel_x = 6; + pixel_y = -2 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ pixel_y = 2 @@ -10156,16 +10147,16 @@ pixel_y = -8 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -8; - pixel_x = 13 + pixel_x = 13; + pixel_y = -8 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -4; - pixel_x = 13 + pixel_x = 13; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -2; - pixel_x = 13 + pixel_x = 13; + pixel_y = -2 }, /obj/structure/window/reinforced{ dir = 4 @@ -10178,8 +10169,8 @@ /area/vr/powered/mall) "ijL" = ( /obj/structure/showcase/sign{ - name = "WARNING: OSHA VIOLATIONS"; - desc = "Don't Fall." + desc = "Don't Fall."; + name = "WARNING: OSHA VIOLATIONS" }, /turf/simulated/floor/outdoors/rocks{ temperature = 293.15 @@ -10221,9 +10212,9 @@ /obj/effect/floor_decal/techfloor, /obj/machinery/light/poi, /obj/machinery/button/remote/blast_door{ + dir = 4; id = "alienroompuzzlevr"; name = "Alien Room Unlocker"; - dir = 4; pixel_x = 8; pixel_y = -24 }, @@ -10273,8 +10264,8 @@ /area/vr/powered/mall) "ioj" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 2 + dir = 2; + pixel_y = 0 }, /turf/simulated/floor/carpet/purcarpet, /area/vr/powered/mall/dorms/secondlife3) @@ -10361,32 +10352,32 @@ }, /obj/structure/window/reinforced, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = 2; - pixel_x = -7 + pixel_x = -7; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = -2; - pixel_x = -7 + pixel_x = -7; + pixel_y = -2 }, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = 2; - pixel_x = -7 + pixel_x = -7; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = -3; - pixel_x = 3 + pixel_x = 3; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = 6; - pixel_x = -7 + pixel_x = -7; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = 6; - pixel_x = 3 + pixel_x = 3; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/poppypretzel{ - pixel_y = 2; - pixel_x = 3 + pixel_x = 3; + pixel_y = 2 }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -10433,23 +10424,23 @@ pixel_x = -10 }, /obj/item/clothing/under/teshari/undercoat/standard/black_red{ - pixel_y = 0; - pixel_x = 7 + pixel_x = 7; + pixel_y = 0 }, /obj/item/clothing/under/teshari/undercoat/standard/pink_grey{ - pixel_y = 9; - pixel_x = 7 + pixel_x = 7; + pixel_y = 9 }, /obj/item/clothing/under/teshari/undercoat/standard/rainbow{ pixel_y = 9 }, /obj/item/clothing/under/teshari/undercoat/standard/white_grey{ - pixel_y = 9; - pixel_x = -5 + pixel_x = -5; + pixel_y = 9 }, /obj/item/clothing/under/teshari/undercoat/standard/yellow_grey{ - pixel_y = 9; - pixel_x = -11 + pixel_x = -11; + pixel_y = 9 }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -10473,8 +10464,8 @@ /obj/item/rcd_ammo/large, /obj/item/rcd_ammo/large, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "iuL" = ( @@ -10502,8 +10493,8 @@ /area/vr/powered/mall/dorms/secondlife5) "ivx" = ( /obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /turf/simulated/floor/outdoors/newdirt_nograss{ temperature = 293.15 @@ -10576,8 +10567,8 @@ /area/vr/powered/gunshop) "ixU" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 9 + dir = 9; + id = "vrsushitrain" }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -10791,8 +10782,8 @@ /area/vr/powered/cult) "iJE" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -10892,8 +10883,8 @@ /area/vr/outdoors/powered) "iRw" = ( /obj/structure/bed/chair/office/dark{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/dungeon) @@ -10991,8 +10982,8 @@ "iXd" = ( /turf/simulated/floor/outdoors/sidewalk/side{ movement_cost = 0; - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "iXf" = ( @@ -11088,8 +11079,8 @@ "jaw" = ( /obj/structure/bed/pillowpile, /obj/item/toy/plushie/shark{ - pixel_y = 3; - pixel_x = 4 + pixel_x = 4; + pixel_y = 3 }, /obj/item/toy/plushie/kitten{ pixel_y = -3 @@ -11099,8 +11090,8 @@ pixel_y = -4 }, /obj/item/toy/plushie/marble_fox{ - pixel_y = -13; - pixel_x = 4 + pixel_x = 4; + pixel_y = -13 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -11149,9 +11140,9 @@ teleport_y = 249 }, /obj/structure/window/reinforced/survival_pod{ - dir = 1; + color = "#cccccc"; density = 0; - color = "#cccccc" + dir = 1 }, /turf/simulated/floor/weird_things/dark, /area/vr/powered/mall) @@ -11301,8 +11292,8 @@ "jhG" = ( /turf/simulated/floor/water/beach/corner{ dir = 4; - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "jin" = ( @@ -11364,8 +11355,8 @@ /area/vr/powered/space/whiteship) "jkL" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /obj/structure/prop/statue/pillar, /turf/simulated/floor/concrete{ @@ -11375,8 +11366,8 @@ "jkT" = ( /obj/effect/floor_decal/rust, /obj/item/bone/leg{ - pixel_y = 0; - pixel_x = -6 + pixel_x = -6; + pixel_y = 0 }, /obj/item/bone/leg{ pixel_x = 4 @@ -11399,8 +11390,8 @@ /obj/structure/table/marble, /obj/item/storage/box/donkpockets/teriyaki, /obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 + pixel_x = 11; + pixel_y = 0 }, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 @@ -11441,8 +11432,8 @@ /obj/structure/barricade, /obj/item/tape/police, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "joe" = ( @@ -11476,12 +11467,12 @@ /area/vr/powered) "joY" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "QTstorage1"; name = "Bolt Control"; pixel_x = -10; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/structure/toilet{ dir = 8 @@ -11577,9 +11568,9 @@ "jsx" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ - pixel_y = 4; dir = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/old_cargo, @@ -11631,12 +11622,12 @@ "juM" = ( /obj/structure/table/marble, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 0; - pixel_x = 4 + pixel_x = 4; + pixel_y = 0 }, /obj/item/storage/box/glasses/square{ - pixel_y = 0; - pixel_x = -7 + pixel_x = -7; + pixel_y = 0 }, /turf/simulated/floor/carpet/geo, /area/vr/powered/mall) @@ -11650,8 +11641,8 @@ "jvT" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/outdoors/grass{ temperature = 293.15 @@ -11792,8 +11783,8 @@ /area/vr/powered/space/mechfactory) "jDX" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 9 + dir = 9; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/ricecake, /turf/simulated/floor/wood/alt/panel, @@ -11978,8 +11969,8 @@ /obj/item/paper{ info = "Fresh bread... Fresh bread... Every Day, it's fresh bread..."; name = "Stained sheet of paper"; - pixel_y = 0; - pixel_x = -9 + pixel_x = -9; + pixel_y = 0 }, /obj/effect/floor_decal/corner/lime/border{ dir = 4 @@ -11989,8 +11980,8 @@ }, /obj/item/material/kitchen/rollingpin, /obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/tiled/old_tile/yellow, /area/vr/powered/mall) @@ -12015,8 +12006,8 @@ "jLk" = ( /obj/machinery/light/lamppost, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "jLr" = ( @@ -12079,8 +12070,8 @@ /area/vr/powered/redbase) "jNO" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 2 + dir = 2; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 8 @@ -12145,8 +12136,8 @@ /obj/effect/floor_decal/corner/black/diagonal, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall/dorms/dorms3) @@ -12157,16 +12148,16 @@ pixel_y = 1 }, /obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 + pixel_x = -6; + pixel_y = 11 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 + pixel_x = 9; + pixel_y = 11 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -12232,9 +12223,9 @@ "jSK" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ - pixel_y = 4; dir = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/old_cargo/purple, @@ -12343,8 +12334,8 @@ "jXX" = ( /obj/item/storage/part_replacer/adv/discount_bluespace, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "jYM" = ( @@ -12371,8 +12362,8 @@ "jZZ" = ( /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "kao" = ( @@ -12417,8 +12408,8 @@ }, /obj/item/camera{ anchored = 1; - name = "projector"; - desc = "Hope theres good movies this year." + desc = "Hope theres good movies this year."; + name = "projector" }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -12428,8 +12419,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "kcS" = ( @@ -12470,8 +12461,8 @@ "keX" = ( /obj/structure/prop/rock/sharp, /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "kfo" = ( @@ -12522,16 +12513,16 @@ pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/omurice{ - pixel_y = 16; - pixel_x = 2 + pixel_x = 2; + pixel_y = 16 }, /obj/item/reagent_containers/food/snacks/omurice{ - pixel_y = 16; - pixel_x = -7 + pixel_x = -7; + pixel_y = 16 }, /obj/item/reagent_containers/food/snacks/omurice{ - pixel_y = 16; - pixel_x = -3 + pixel_x = -3; + pixel_y = 16 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -12715,8 +12706,8 @@ "kmG" = ( /turf/simulated/floor/water/beach/corner{ dir = 1; - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/outdoors/powered) "knh" = ( @@ -12753,8 +12744,8 @@ /area/vr/powered/cult) "kpq" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 4 + dir = 4; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 1 @@ -12818,8 +12809,8 @@ /area/vr/powered/mall/backrooms) "kuc" = ( /mob/living/simple_mob/construct/artificer{ - dir = 8; - ai_holder_type = null + ai_holder_type = null; + dir = 8 }, /turf/simulated/floor/redgrid/off, /area/vr/powered/cult) @@ -12887,8 +12878,8 @@ pixel_y = 9 }, /obj/item/reagent_containers/food/snacks/sharkmeatdip{ - pixel_y = 0; - pixel_x = -3 + pixel_x = -3; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/conspawn) @@ -12924,13 +12915,13 @@ /area/vr/powered/cult) "kzD" = ( /obj/machinery/transhuman/autoresleever{ - respawn = 0; - vore_respawn = 0; - equip_body = 1; - name = "VR Ghost Cafe Spawn"; + default_job = "VR Avatar"; desc = "Clicking on this as a ghost will spawn you in as a NPC exclusive to the VR world loaded into the station."; + equip_body = 1; ghost_spawns = 1; - default_job = "VR Avatar" + name = "VR Ghost Cafe Spawn"; + respawn = 0; + vore_respawn = 0 }, /turf/simulated/floor/wood, /area/vr/powered/conspawn) @@ -12938,8 +12929,8 @@ /obj/random/trash, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "kAh" = ( @@ -13351,8 +13342,8 @@ /area/vr/powered/dungeon) "kPH" = ( /mob/living/simple_mob/construct/harvester{ - dir = 1; - ai_holder_type = null + ai_holder_type = null; + dir = 1 }, /turf/simulated/floor/cult, /area/vr/powered/cult) @@ -13503,8 +13494,8 @@ /obj/effect/floor_decal/corner/black/diagonal, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/red, /area/vr/powered/mall/dorms/dorms5) @@ -13554,8 +13545,8 @@ "kYR" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "kZd" = ( @@ -13744,9 +13735,9 @@ dir = 1 }, /turf/simulated/floor/water/beach{ - temperature = 293.15; + dir = 10; outdoors = -1; - dir = 10 + temperature = 293.15 }, /area/vr/powered/mall/vw) "lhj" = ( @@ -13758,8 +13749,8 @@ dir = 8 }, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/carpet/brown, /area/vr/powered/mall) @@ -13889,8 +13880,8 @@ "lot" = ( /obj/structure/table/hardwoodtable, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -13970,8 +13961,8 @@ /area/vr/powered/space/sciship) "lrm" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 2 + dir = 2; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 1 @@ -14022,32 +14013,32 @@ "lst" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = 2; - pixel_x = -10 + pixel_x = -10; + pixel_y = 2 }, /obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = -3; - pixel_x = -10 + pixel_x = -10; + pixel_y = -3 }, /obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = 12; - pixel_x = -10 + pixel_x = -10; + pixel_y = 12 }, /obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = 6; - pixel_x = -10 + pixel_x = -10; + pixel_y = 6 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = 0; - pixel_x = -3 + pixel_x = -3; + pixel_y = 0 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -8; - pixel_x = -3 + pixel_x = -3; + pixel_y = -8 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -4; - pixel_x = -3 + pixel_x = -3; + pixel_y = -4 }, /obj/effect/floor_decal/corner/red/diagonal, /obj/fruitspawner/potato, @@ -14088,10 +14079,10 @@ dir = 1 }, /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/floor/plating, @@ -14131,12 +14122,12 @@ /area/vr/powered/mall/secondlife) "luQ" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "QTstorage2"; name = "Bolt Control"; pixel_x = -10; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/structure/toilet{ dir = 8 @@ -14149,8 +14140,8 @@ "lvj" = ( /obj/structure/table/rack/wood, /obj/item/clothing/under/color/grey{ - pixel_y = 7; - pixel_x = -7 + pixel_x = -7; + pixel_y = 7 }, /obj/item/clothing/under/color/lightblue{ pixel_y = 7 @@ -14160,15 +14151,15 @@ pixel_y = 7 }, /obj/item/clothing/under/color/lightpurple{ - pixel_y = -1; - pixel_x = -7 + pixel_x = -7; + pixel_y = -1 }, /obj/item/clothing/under/color/red{ pixel_y = -1 }, /obj/item/clothing/under/color/fjumpsuit/yellowgreenf{ - pixel_y = -1; - pixel_x = 7 + pixel_x = 7; + pixel_y = -1 }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -14249,28 +14240,28 @@ dir = 5 }, /obj/item/soulstone{ - pixel_y = 9; - pixel_x = 5 + pixel_x = 5; + pixel_y = 9 }, /obj/item/soulstone{ - pixel_y = 9; - pixel_x = -2 + pixel_x = -2; + pixel_y = 9 }, /obj/item/soulstone{ - pixel_y = 3; - pixel_x = 5 + pixel_x = 5; + pixel_y = 3 }, /obj/item/soulstone{ - pixel_y = 4; - pixel_x = -2 + pixel_x = -2; + pixel_y = 4 }, /obj/item/soulstone{ - pixel_y = -3; - pixel_x = 5 + pixel_x = 5; + pixel_y = -3 }, /obj/item/soulstone{ - pixel_y = -3; - pixel_x = -3 + pixel_x = -3; + pixel_y = -3 }, /turf/simulated/floor/cult, /area/vr/powered/cult) @@ -14323,8 +14314,8 @@ "lyW" = ( /obj/structure/prop/rock/flat, /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "lze" = ( @@ -14768,52 +14759,52 @@ health = 1e+006 }, /obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -8; - pixel_x = -8 + pixel_x = -8; + pixel_y = -8 }, /obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = -1; - pixel_x = -8 + pixel_x = -8; + pixel_y = -1 }, /obj/item/reagent_containers/food/condiment/cookingoil{ - pixel_y = 8; - pixel_x = -8 + pixel_x = -8; + pixel_y = 8 }, /obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = -4; - pixel_x = -2 + pixel_x = -2; + pixel_y = -4 }, /obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = 0; - pixel_x = -2 + pixel_x = -2; + pixel_y = 0 }, /obj/item/reagent_containers/food/condiment/hotsauce{ - pixel_y = 3; - pixel_x = -2 + pixel_x = -2; + pixel_y = 3 }, /obj/item/reagent_containers/food/condiment/vinegar{ - pixel_y = 7; - pixel_x = -2 + pixel_x = -2; + pixel_y = 7 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = 2; - pixel_x = 4 + pixel_x = 4; + pixel_y = 2 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -11; - pixel_x = 4 + pixel_x = 4; + pixel_y = -11 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -8; - pixel_x = 4 + pixel_x = 4; + pixel_y = -8 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -5; - pixel_x = 4 + pixel_x = 4; + pixel_y = -5 }, /obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -2; - pixel_x = 4 + pixel_x = 4; + pixel_y = -2 }, /obj/effect/floor_decal/corner/lime/border{ dir = 8 @@ -14857,8 +14848,8 @@ /area/vr/powered/space/sciship) "lSq" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 4 + dir = 4; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 1 @@ -14886,10 +14877,10 @@ /area/vr/outdoors/powered) "lUa" = ( /obj/machinery/door/blast/multi_tile/four_tile_ver_sec{ - density = 00; - opacity = 0; autoclose = 0; - icon_state = "open" + density = 00; + icon_state = "open"; + opacity = 0 }, /turf/unsimulated/floor/lino/turfpack/station{ color = "#ffe9ab" @@ -15124,8 +15115,8 @@ "men" = ( /obj/structure/table/marble, /obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 + pixel_x = 11; + pixel_y = 0 }, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 @@ -15142,8 +15133,8 @@ /obj/structure/table/hardwoodtable, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "mfw" = ( @@ -15205,9 +15196,9 @@ "mhy" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ - pixel_y = 4; dir = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/white, @@ -15290,14 +15281,14 @@ "mky" = ( /obj/structure/bed/pillowpile/teal, /obj/item/toy/plushie/borgplushie/drake/trauma{ - pixel_y = -5; - pixel_x = 5 + pixel_x = 5; + pixel_y = -5 }, /obj/item/bedsheet/pillow/white, /obj/item/toy/plushie/teshari/w_yw, /obj/item/toy/plushie/shark{ - pixel_y = 3; - pixel_x = -15 + pixel_x = -15; + pixel_y = 3 }, /turf/simulated/floor/carpet/gaycarpet, /area/vr/powered/mall/secondlife) @@ -15445,8 +15436,8 @@ /area/vr/powered) "mpw" = ( /turf/simulated/floor/outdoors/grass{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "msk" = ( @@ -16019,13 +16010,13 @@ /area/vr/powered/material) "mOH" = ( /obj/machinery/light{ - dir = 2; - nightshift_enabled = 1; brightness_color = "#e060e0"; - light_color = "#e060e0"; - overlay_color = "#e060e0"; brightness_color_ns = "#9C439C"; - name = "tinted light fixture" + dir = 2; + light_color = "#e060e0"; + name = "tinted light fixture"; + nightshift_enabled = 1; + overlay_color = "#e060e0" }, /turf/simulated/floor/tiled/old_tile, /area/vr/powered/mall/dorms/secondlife5) @@ -16066,8 +16057,8 @@ "mQL" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "mQQ" = ( @@ -16078,8 +16069,8 @@ /obj/effect/spawner/parts/t5, /obj/effect/spawner/parts/t5, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "mRo" = ( @@ -16262,8 +16253,8 @@ icon = 'icons/obj/abductor.dmi'; icon_state = "dispenser"; name = "Drug-Dispenser"; - req_access = list(777); - pixel_y = -4 + pixel_y = -4; + req_access = list(777) }, /obj/item/reagent_containers/hypospray/autoinjector/biginjector/soporific, /obj/item/reagent_containers/hypospray/autoinjector/biginjector/soporific, @@ -16310,8 +16301,8 @@ /area/vr/powered/dungeon) "naL" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 4 + dir = 4; + id = "vrsushitrain" }, /obj/structure/plasticflaps, /turf/simulated/floor/wood/alt/panel, @@ -16468,8 +16459,8 @@ /area/vr/powered/cult) "njG" = ( /obj/structure/bed/chair/sofa/brown{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/wmarble, /area/vr/powered/motel) @@ -16542,8 +16533,8 @@ "nmj" = ( /obj/random/trash, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "nml" = ( @@ -16622,8 +16613,8 @@ /area/vr/outdoors/powered) "nnx" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 10 + dir = 10; + id = "vrsushitrain" }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -16670,8 +16661,8 @@ "nqH" = ( /obj/machinery/smartfridge/drying_rack{ dir = 4; - pixel_y = 0; - pixel_x = -7 + pixel_x = -7; + pixel_y = 0 }, /turf/simulated/floor/beach/sand/desert, /area/vr/powered/mall/vw) @@ -16753,8 +16744,8 @@ /area/vr/powered) "ntz" = ( /obj/structure/showcase/sign{ - name = "UNDER CONSTRUCTION"; - desc = "This sign appears to be telling you that there are more maps under construction." + desc = "This sign appears to be telling you that there are more maps under construction."; + name = "UNDER CONSTRUCTION" }, /turf/simulated/floor/outdoors/grass{ temperature = 293.15 @@ -16762,8 +16753,8 @@ /area/vr/outdoors/powered) "ntG" = ( /mob/living/simple_mob/construct/wraith{ - dir = 1; - ai_holder_type = null + ai_holder_type = null; + dir = 1 }, /turf/simulated/floor/cult, /area/vr/powered/cult) @@ -16807,8 +16798,8 @@ /obj/structure/bed/pillowpile/yellow, /obj/item/toy/plushie/borgplushie/drake/jani, /obj/item/toy/plushie/red_fox{ - pixel_y = -8; - pixel_x = 7 + pixel_x = 7; + pixel_y = -8 }, /turf/simulated/floor/carpet/gaycarpet, /area/vr/powered/mall/secondlife) @@ -16920,8 +16911,8 @@ }, /obj/structure/table/marble, /obj/machinery/cash_register{ - req_access = null; - dir = 1 + dir = 1; + req_access = null }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall) @@ -16961,15 +16952,15 @@ "nCX" = ( /obj/structure/table/rack/shelf/steel, /obj/item/reagent_containers/food/drinks/bottle/space_up{ - pixel_y = 0; - pixel_x = -9 + pixel_x = -9; + pixel_y = 0 }, /obj/item/reagent_containers/food/drinks/bottle/space_mountain_wind{ pixel_x = -2 }, /obj/item/reagent_containers/food/drinks/bottle/dr_gibb{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /turf/simulated/floor/tiled, /area/vr/powered/constore) @@ -17033,8 +17024,8 @@ pixel_y = 0 }, /obj/item/stack/material/durasteel{ - material = 50; - amount = 50 + amount = 50; + material = 50 }, /obj/item/stack/material/phoron{ amount = 50 @@ -17056,8 +17047,8 @@ material = 50 }, /obj/item/stack/material/platinum{ - matter = 25; - amount = 50 + amount = 50; + matter = 25 }, /obj/item/stack/material/silver{ amount = 25 @@ -17072,8 +17063,8 @@ amount = 50 }, /obj/item/stack/material/uranium{ - material = 25; - amount = 50 + amount = 50; + material = 25 }, /obj/item/stack/rods{ amount = 50 @@ -17242,8 +17233,8 @@ "nKv" = ( /obj/structure/prop/rock/small, /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "nKw" = ( @@ -17424,8 +17415,8 @@ /area/vr/powered/armory) "nPI" = ( /obj/effect/simple_portal/linked{ - portal_id = 71; - name = "Fast Travel to VR Armory" + name = "Fast Travel to VR Armory"; + portal_id = 71 }, /turf/simulated/shuttle/floor/black, /area/vr/outdoors/powered) @@ -17435,8 +17426,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "nRf" = ( @@ -17483,8 +17474,8 @@ /obj/structure/barricade, /obj/item/tape/police, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "nSN" = ( @@ -17539,8 +17530,8 @@ /area/vr/powered/dungeon) "nUF" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -17581,16 +17572,16 @@ dir = 4 }, /obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_y = 0; - pixel_x = -9 + pixel_x = -9; + pixel_y = 0 }, /obj/item/reagent_containers/food/drinks/bottle/tomatojuice{ - pixel_y = 0; - pixel_x = -4 + pixel_x = -4; + pixel_y = 0 }, /obj/item/reagent_containers/food/drinks/bottle/applejuice{ - pixel_y = 2; - pixel_x = 4 + pixel_x = 4; + pixel_y = 2 }, /turf/simulated/floor/tiled/neutral, /area/vr/powered/mall) @@ -17603,8 +17594,8 @@ "nWE" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/drinks/bottle/cream{ - pixel_y = -2; - pixel_x = -8 + pixel_x = -8; + pixel_y = -2 }, /obj/item/reagent_containers/glass/beaker/measuring_cup, /turf/simulated/floor/wood/alt/panel, @@ -17663,63 +17654,63 @@ dir = 1 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 6; - pixel_x = 1 + pixel_x = 1; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 6; - pixel_x = 6 + pixel_x = 6; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 1; - pixel_x = 6 + pixel_x = 6; + pixel_y = 1 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = -3; - pixel_x = 6 + pixel_x = 6; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = -3; - pixel_x = 1 + pixel_x = 1; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 2; - pixel_x = 1 + pixel_x = 1; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/sashimi{ - pixel_y = 7; - pixel_x = -6 + pixel_x = -6; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/sashimi{ - pixel_y = -3; - pixel_x = -6 + pixel_x = -6; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/sashimi{ - pixel_y = 2; - pixel_x = -6 + pixel_x = -6; + pixel_y = 2 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) "oaU" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/simple_portal/linked{ - portal_id = 69; - name = "Fast Travel to Construct" + name = "Fast Travel to Construct"; + portal_id = 69 }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "oaZ" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 0; - pixel_x = -4 + pixel_x = -4; + pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /turf/simulated/floor/tiled, /area/vr/powered/constore) @@ -17780,8 +17771,8 @@ "oeP" = ( /obj/structure/prop/statue, /turf/simulated/floor/water/pool{ - temperature = 293.15; - outdoors = 1 + outdoors = 1; + temperature = 293.15 }, /area/vr/outdoors/powered/mall) "ofy" = ( @@ -17899,36 +17890,36 @@ "oiM" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = 6 + pixel_x = 6; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = -7 + pixel_x = -7; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = -3 + pixel_x = -3; + pixel_y = 8 }, /obj/item/reagent_containers/food/snacks/packaged/mochicake{ - pixel_y = 8; - pixel_x = 2 + pixel_x = 2; + pixel_y = 8 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = 3 + pixel_x = 3; + pixel_y = -4 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = -9 + pixel_x = -9; + pixel_y = -4 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = -5 + pixel_x = -5; + pixel_y = -4 }, /obj/item/storage/box/pocky{ - pixel_y = -4; - pixel_x = -1 + pixel_x = -1; + pixel_y = -4 }, /obj/structure/window/reinforced{ dir = 4 @@ -18306,8 +18297,8 @@ /area/vr/powered/mall) "ovr" = ( /obj/effect/simple_portal/linked{ - portal_id = 75; - name = "Fast Travel to Mall" + name = "Fast Travel to Mall"; + portal_id = 75 }, /obj/effect/floor_decal/corner/purple/diagonal{ color = "#f700ff" @@ -18331,8 +18322,8 @@ dir = 8 }, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -18390,8 +18381,8 @@ "oym" = ( /obj/item/reagent_containers/glass/bucket, /turf/simulated/floor/water/beach{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall/vw) "oyJ" = ( @@ -18415,8 +18406,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "oyN" = ( @@ -18517,32 +18508,32 @@ dir = 2 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = 10; - pixel_x = -4 + pixel_x = -4; + pixel_y = 10 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = -1; - pixel_x = -2 + pixel_x = -2; + pixel_y = -1 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = 2; - pixel_x = 8 + pixel_x = 8; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = 6; - pixel_x = -4 + pixel_x = -4; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = -1; - pixel_x = 8 + pixel_x = 8; + pixel_y = -1 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = 6; - pixel_x = 8 + pixel_x = 8; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/cinnamonbun{ - pixel_y = 10; - pixel_x = 8 + pixel_x = 8; + pixel_y = 10 }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -18724,8 +18715,8 @@ "oJI" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ - pixel_y = 2; - pixel_x = -5 + pixel_x = -5; + pixel_y = 2 }, /obj/machinery/light{ dir = 8 @@ -18779,11 +18770,11 @@ }, /obj/item/clothing/suit/storage/teshari/cloak/standard/blue_grey, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; + brightness_color = "#e060e0"; brightness_color_ns = "#9C439C"; light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" + name = "tinted light fixture"; + overlay_color = "#e060e0" }, /turf/simulated/floor/wood/alt/parquet/turfpack, /area/vr/powered/mall) @@ -18846,10 +18837,10 @@ /area/vr/powered/space/mechfactory) "oOv" = ( /obj/effect/simple_portal/linked{ - portal_id = 6690; icon = 'icons/turf/flooring/weird_vr.dmi'; icon_state = "dark"; - light_on = 0 + light_on = 0; + portal_id = 6690 }, /turf/simulated/floor/weird_things/dark, /area/vr/powered/mall/backrooms) @@ -18960,8 +18951,8 @@ "oVM" = ( /obj/structure/railing/grey, /turf/simulated/floor/water/pool{ - temperature = 293.15; - outdoors = 1 + outdoors = 1; + temperature = 293.15 }, /area/vr/outdoors/powered) "oVV" = ( @@ -19085,10 +19076,10 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/shuttle/plating, @@ -19144,8 +19135,8 @@ /area/vr/powered/bar) "pcE" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 4 + dir = 4; + id = "vrsushitrain" }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -19253,8 +19244,8 @@ "pha" = ( /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "phr" = ( @@ -19294,8 +19285,8 @@ /obj/item/tvcamera, /obj/item/tvcamera, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "pjF" = ( @@ -19305,8 +19296,8 @@ /area/vr/powered/mall/backrooms) "pkd" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 2 + dir = 2; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 1 @@ -19467,26 +19458,26 @@ }, /obj/structure/table/rack/wood, /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket{ - pixel_y = 2; - pixel_x = -7 + pixel_x = -7; + pixel_y = 2 }, /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket{ pixel_y = 2 }, /obj/item/clothing/suit/storage/toggle/leather_jacket{ - pixel_y = 1; - pixel_x = 8 + pixel_x = 8; + pixel_y = 1 }, /obj/item/clothing/under/suit_jacket/burgundy{ - pixel_y = -3; - pixel_x = -6 + pixel_x = -6; + pixel_y = -3 }, /obj/item/clothing/under/suit_jacket/charcoal{ pixel_y = -3 }, /obj/item/clothing/under/suit_jacket/checkered{ - pixel_y = -2; - pixel_x = 8 + pixel_x = 8; + pixel_y = -2 }, /obj/item/clothing/shoes/dress{ pixel_y = -10 @@ -19592,10 +19583,10 @@ /area/vr/powered/rocks) "pwd" = ( /obj/machinery/door/blast/multi_tile/four_tile_hor_sec{ - icon_state = "open"; - opacity = 0; autoclose = 0; - density = 0 + density = 0; + icon_state = "open"; + opacity = 0 }, /turf/simulated/floor/tiled/techfloor/grid, /area/vr/powered/cult) @@ -19625,8 +19616,8 @@ "pyc" = ( /turf/simulated/floor/water/beach{ dir = 10; - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/outdoors/powered) "pyt" = ( @@ -19730,8 +19721,8 @@ "pBV" = ( /obj/structure/table/woodentable, /obj/random/cigarettes{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /obj/item/flame/lighter{ pixel_x = -6 @@ -19771,8 +19762,8 @@ /area/vr/powered/mall/dorms/dorms4) "pDL" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 8 + dir = 8; + id = "vrsushitrain" }, /obj/structure/window/reinforced, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled, @@ -19848,8 +19839,8 @@ /area/vr/powered/mall) "pGz" = ( /turf/simulated/floor/water{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "pGH" = ( @@ -19925,16 +19916,16 @@ "pKp" = ( /obj/structure/table/rack/shelf/steel, /obj/item/reagent_containers/food/drinks/bottle/cola{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /obj/item/reagent_containers/food/drinks/bottle/cola{ - pixel_y = 0; - pixel_x = -9 + pixel_x = -9; + pixel_y = 0 }, /obj/item/reagent_containers/food/drinks/bottle/cola{ - pixel_y = 0; - pixel_x = -2 + pixel_x = -2; + pixel_y = 0 }, /turf/simulated/floor/tiled, /area/vr/powered/constore) @@ -19970,8 +19961,8 @@ /area/vr/powered/cult) "pKS" = ( /obj/item/toy/plushie/black_fox{ - pixel_y = 0; - name = "latex black fox" + name = "latex black fox"; + pixel_y = 0 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -20268,9 +20259,9 @@ "pYB" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ - pixel_y = 4; dir = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/techfloor, @@ -20334,20 +20325,20 @@ "qaS" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 4; - pixel_x = 7 + pixel_x = 7; + pixel_y = 4 }, /obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = -8; - pixel_x = 7 + pixel_x = 7; + pixel_y = -8 }, /obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = -4; - pixel_x = 7 + pixel_x = 7; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 0; - pixel_x = 7 + pixel_x = 7; + pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/taco{ pixel_y = 6 @@ -20387,23 +20378,23 @@ /obj/structure/window/basic, /obj/structure/table/rack/wood, /obj/item/clothing/suit/storage/toggle/bomber{ - pixel_y = -3; - pixel_x = 7 + pixel_x = 7; + pixel_y = -3 }, /obj/item/clothing/suit/storage/bomber/alt{ pixel_y = -2 }, /obj/item/clothing/suit/storage/toggle/bomber/pilot{ - pixel_y = -2; - pixel_x = -7 + pixel_x = -7; + pixel_y = -2 }, /obj/item/clothing/suit/storage/puffyblue{ - pixel_y = 8; - pixel_x = -7 + pixel_x = -7; + pixel_y = 8 }, /obj/item/clothing/shoes/slippers{ - pixel_y = 6; - pixel_x = 5 + pixel_x = 5; + pixel_y = 6 }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -20519,9 +20510,9 @@ "qfX" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ - pixel_y = 4; dir = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/red, @@ -20575,10 +20566,10 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/shuttle/plating, @@ -20651,9 +20642,9 @@ "qjp" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ - pixel_y = 4; dir = 4; - pixel_x = -4 + pixel_x = -4; + pixel_y = 4 }, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/yellow, @@ -20684,8 +20675,8 @@ "qkv" = ( /obj/effect/floor_decal/rust, /obj/item/bone/ribs{ - pixel_y = -8; - pixel_x = -5 + pixel_x = -5; + pixel_y = -8 }, /obj/item/bone{ pixel_y = 7 @@ -20905,16 +20896,16 @@ pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7; - pixel_x = 5 + pixel_x = 5; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7; - pixel_x = -8 + pixel_x = -8; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7; - pixel_x = -8 + pixel_x = -8; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/fortunecookie{ pixel_y = 7 @@ -20934,8 +20925,8 @@ "qvP" = ( /obj/structure/barricade, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "qvQ" = ( @@ -20950,8 +20941,8 @@ "qvV" = ( /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/concrete{ outdoors = 1 @@ -21027,8 +21018,8 @@ icon_state = "beartrap1" }, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "qyR" = ( @@ -21287,8 +21278,8 @@ "qFb" = ( /obj/structure/table/woodentable, /obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -2; - pixel_x = 3 + pixel_x = 3; + pixel_y = -2 }, /turf/simulated/floor/wood, /area/vr/powered/bar) @@ -21351,12 +21342,12 @@ "qIn" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmall1"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light_switch{ pixel_x = 11; @@ -21406,10 +21397,10 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/shuttle/plating, @@ -21461,8 +21452,8 @@ "qOa" = ( /obj/structure/table/steel_reinforced, /obj/machinery/door/blast/shutters{ - id = "vrgunshop"; - dir = 2 + dir = 2; + id = "vrgunshop" }, /obj/machinery/door/window/northright, /obj/machinery/door/window/southleft, @@ -21494,12 +21485,12 @@ /obj/structure/table/wooden_reinforced, /obj/item/material/kitchen/utensil/fork, /obj/item/reagent_containers/pill/happy{ - pixel_y = 6; - pixel_x = 7 + pixel_x = 7; + pixel_y = 6 }, /obj/item/reagent_containers/pill/diet{ - pixel_y = 2; - pixel_x = 4 + pixel_x = 4; + pixel_y = 2 }, /obj/item/reagent_containers/food/condiment/soysauce, /turf/simulated/floor/wood, @@ -21524,8 +21515,8 @@ /obj/effect/floor_decal/corner/black/diagonal, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/old_cargo, /area/vr/powered/mall/dorms/dorms6) @@ -21601,8 +21592,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "qWq" = ( @@ -21645,8 +21636,8 @@ "qZc" = ( /turf/simulated/floor/water/beach{ dir = 9; - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "qZB" = ( @@ -21705,8 +21696,8 @@ /obj/effect/floor_decal/corner/black/diagonal, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/dorms/dorms1) @@ -21746,8 +21737,8 @@ pixel_x = -6 }, /obj/item/toy/tennis/blue{ - pixel_y = 0; - pixel_x = 4 + pixel_x = 4; + pixel_y = 0 }, /turf/simulated/floor/tiled/milspec/raised, /area/vr/powered/mall/secondlife) @@ -22081,9 +22072,9 @@ teleport_y = 157 }, /obj/effect/simple_portal/coords{ + density = 0; icon = 'icons/obj/machines/gateway_vr.dmi'; - icon_state = "offcenter"; - density = 0 + icon_state = "offcenter" }, /obj/effect/map_effect/perma_light/gateway, /turf/unsimulated/floor/lino/turfpack/station{ @@ -22137,12 +22128,12 @@ dir = 8 }, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; brightness_color = "#e060e0"; + brightness_color_ns = "#9C439C"; + dir = 8; + light_color = "#e060e0"; name = "tinted light fixture"; - dir = 8 + overlay_color = "#e060e0" }, /obj/structure/bed/pillowpile/red, /turf/simulated/floor/tiled/techfloor, @@ -22279,8 +22270,8 @@ /area/vr/powered/mall/backrooms) "rCf" = ( /obj/machinery/door/airlock/freezer{ - name = "Restroom Stall"; - id_tag = "QTstorage3" + id_tag = "QTstorage3"; + name = "Restroom Stall" }, /turf/simulated/floor/tiled/old_tile, /area/vr/powered/mall/secondlife) @@ -22532,9 +22523,9 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /obj/machinery/computer/rdconsole/core{ @@ -22547,8 +22538,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "rOL" = ( @@ -22611,8 +22602,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "rSf" = ( @@ -22630,12 +22621,12 @@ "rSM" = ( /obj/effect/decal/cleanable/fruit_smudge, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmallSL5"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -22729,8 +22720,8 @@ dir = 4 }, /obj/item/reagent_containers/food/drinks/bottle/space_mountain_wind{ - pixel_y = 0; - pixel_x = -9 + pixel_x = -9; + pixel_y = 0 }, /obj/item/reagent_containers/food/drinks/bottle/space_up{ pixel_x = -4 @@ -22789,32 +22780,32 @@ }, /obj/structure/table/rack/shelf/steel, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 0; - pixel_x = -6 + pixel_x = -6; + pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 9; - pixel_x = 8 + pixel_x = 8; + pixel_y = 9 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 9; - pixel_x = -6 + pixel_x = -6; + pixel_y = 9 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 4; - pixel_x = -6 + pixel_x = -6; + pixel_y = 4 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = -4; - pixel_x = -6 + pixel_x = -6; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = -4; - pixel_x = 8 + pixel_x = 8; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 4; - pixel_x = 8 + pixel_x = 8; + pixel_y = 4 }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall) @@ -22838,8 +22829,8 @@ /area/vr/powered/mall) "sae" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 2 + dir = 2; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/ricecake, /obj/structure/window/reinforced{ @@ -22850,8 +22841,8 @@ "saj" = ( /obj/structure/bed/pillowpile/orange, /obj/item/toy/plushie/orange_fox{ - pixel_y = -5; - pixel_x = 4 + pixel_x = 4; + pixel_y = -5 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -22865,8 +22856,8 @@ "saH" = ( /obj/structure/showcase/sign, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "sbp" = ( @@ -22941,12 +22932,12 @@ /area/vr/powered/mall/secondlife) "seJ" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 4 + dir = 4; + pixel_y = 0 }, /turf/simulated/floor/concrete{ outdoors = 1 @@ -23027,16 +23018,16 @@ /area/vr/powered/dungeon) "shu" = ( /obj/machinery/door/window/brigdoor/eastright{ - req_access = null; - dir = 2 + dir = 2; + req_access = null }, /obj/machinery/door/window/brigdoor/eastleft{ - req_access = null; - dir = 1 + dir = 1; + req_access = null }, /obj/machinery/door/window/brigdoor/eastright{ - req_access = null; - dir = 2 + dir = 2; + req_access = null }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/dungeon) @@ -23096,8 +23087,8 @@ /area/vr/powered/mall/secondlife) "snq" = ( /obj/machinery/light{ - layer = 3; - dir = 1 + dir = 1; + layer = 3 }, /obj/structure/table/marble, /obj/item/storage/box/glasses/coffeecup{ @@ -23230,40 +23221,40 @@ "stB" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/chickenkatsu{ - pixel_y = -3; - pixel_x = -7 + pixel_x = -7; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/chickenkatsu{ - pixel_y = -9; - pixel_x = -7 + pixel_x = -7; + pixel_y = -9 }, /obj/item/reagent_containers/food/snacks/chickenkatsu{ - pixel_y = -6; - pixel_x = -7 + pixel_x = -7; + pixel_y = -6 }, /obj/item/reagent_containers/food/condiment/soysauce{ - pixel_y = 7; - pixel_x = 8 + pixel_x = 8; + pixel_y = 7 }, /obj/item/reagent_containers/food/condiment/soysauce{ - pixel_y = -1; - pixel_x = 8 + pixel_x = 8; + pixel_y = -1 }, /obj/item/reagent_containers/food/condiment/soysauce{ - pixel_y = 3; - pixel_x = 8 + pixel_x = 8; + pixel_y = 3 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) "stV" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/meatburrito{ - pixel_y = -4; - pixel_x = -12 + pixel_x = -12; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/meatburrito{ - pixel_y = -4; - pixel_x = -7 + pixel_x = -7; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/cheeseburrito{ pixel_y = -4 @@ -23314,12 +23305,12 @@ /area/vr/powered/space/mechfactory) "suB" = ( /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmallSL4"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /turf/simulated/floor/carpet/gaycarpet, /area/vr/powered/mall/dorms/secondlife4) @@ -23336,28 +23327,28 @@ }, /obj/structure/table/rack/shelf/steel, /obj/item/tool/crowbar/red{ + desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"; force = 15; - throwforce = 16; name = "heavy crowbar"; - desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch" + throwforce = 16 }, /obj/item/tool/crowbar/red{ + desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"; force = 15; - throwforce = 16; name = "heavy crowbar"; - desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch" + throwforce = 16 }, /obj/item/tool/crowbar/red{ + desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"; force = 15; - throwforce = 16; name = "heavy crowbar"; - desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch" + throwforce = 16 }, /obj/item/tool/crowbar/red{ + desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"; force = 15; - throwforce = 16; name = "heavy crowbar"; - desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch" + throwforce = 16 }, /turf/simulated/shuttle/floor/black, /area/vr/powered/armory) @@ -23399,8 +23390,8 @@ }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "sxm" = ( @@ -23535,12 +23526,12 @@ "sBU" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmall3"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light_switch{ pixel_x = 11; @@ -23607,8 +23598,8 @@ /area/vr/powered/mall) "sEh" = ( /obj/effect/simple_portal/linked{ - portal_id = 71; - name = "Fast Travel to City" + name = "Fast Travel to City"; + portal_id = 71 }, /turf/simulated/floor/concrete{ outdoors = 1 @@ -23636,12 +23627,12 @@ /area/vr/powered/mall/dorms/dorms3) "sFk" = ( /obj/effect/simple_portal/linked{ - portal_id = 70; - name = "Fast Travel to Construct" + name = "Fast Travel to Construct"; + portal_id = 70 }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "sFH" = ( @@ -23764,16 +23755,16 @@ "sJv" = ( /obj/structure/table/darkglass, /obj/item/mindbinder{ - pixel_y = 4; - pixel_x = -2 + pixel_x = -2; + pixel_y = 4 }, /obj/item/mindbinder{ - pixel_y = -4; - pixel_x = -3 + pixel_x = -3; + pixel_y = -4 }, /obj/item/mindbinder{ - pixel_y = 2; - pixel_x = 5 + pixel_x = 5; + pixel_y = 2 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -23796,8 +23787,8 @@ /area/vr/powered/space/mechfactory) "sKj" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/outdoors/grass{ @@ -23921,13 +23912,13 @@ /obj/structure/window/reinforced/tinted, /obj/structure/table/rack/wood, /obj/item/clothing/suit/storage/hooded/teshari/standard{ - pixel_y = 0; - pixel_x = -8 + pixel_x = -8; + pixel_y = 0 }, /obj/item/clothing/suit/storage/hooded/teshari/standard/black_blue, /obj/item/clothing/suit/storage/hooded/teshari/standard/black_brown{ - pixel_y = 0; - pixel_x = 6 + pixel_x = 6; + pixel_y = 0 }, /obj/item/toy/plushie/teshari/y_yw{ pixel_y = 4 @@ -23953,8 +23944,8 @@ }, /obj/structure/table/marble, /obj/machinery/microwave{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall) @@ -23989,8 +23980,8 @@ "sUK" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "sVe" = ( @@ -24121,9 +24112,9 @@ /obj/effect/map_helper/airlock/button/ext_button, /obj/machinery/door/airlock/hatch, /obj/machinery/door/blast/regular{ + density = 0; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/floor/tiled/techfloor/grid, @@ -24143,8 +24134,8 @@ "teH" = ( /obj/machinery/light/lamppost, /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/outdoors/grass{ temperature = 293.15 @@ -24153,20 +24144,20 @@ "tfh" = ( /obj/structure/table/rack/shelf/steel, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = 9 + pixel_x = 9; + pixel_y = -1 }, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = -6 + pixel_x = -6; + pixel_y = -1 }, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = -1 + pixel_x = -1; + pixel_y = -1 }, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = 4 + pixel_x = 4; + pixel_y = -1 }, /obj/machinery/light{ dir = 8 @@ -24200,8 +24191,8 @@ }, /obj/item/material/kitchen/rollingpin, /obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 + pixel_x = 11; + pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall) @@ -24335,8 +24326,8 @@ /area/vr/powered/vet) "tnK" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 2 + dir = 2; + pixel_y = 0 }, /turf/simulated/floor/carpet/gaycarpet, /area/vr/powered/mall/dorms/secondlife4) @@ -24638,8 +24629,8 @@ /area/vr/powered/mall) "tzL" = ( /mob/living/simple_mob/construct/juggernaut/behemoth{ - dir = 8; - ai_holder_type = null + ai_holder_type = null; + dir = 8 }, /turf/simulated/floor/redgrid/off, /area/vr/powered/cult) @@ -24728,10 +24719,10 @@ /obj/structure/window/reinforced/survival_pod, /obj/effect/catwalk_plated/dark, /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/floor/airless, @@ -24799,8 +24790,8 @@ /obj/structure/railing/grey, /obj/structure/flora/ausbushes/reedbush, /turf/simulated/floor/water/pool{ - temperature = 293.15; - outdoors = 1 + outdoors = 1; + temperature = 293.15 }, /area/vr/outdoors/powered) "tGL" = ( @@ -24821,14 +24812,14 @@ /area/vr/powered/space/sciship) "tHK" = ( /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "tHR" = ( /turf/simulated/floor/water{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/outdoors/powered) "tIS" = ( @@ -24853,12 +24844,12 @@ pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/sugarcookie{ - pixel_y = -4; - pixel_x = -8 + pixel_x = -8; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/sugarcookie{ - pixel_y = -1; - pixel_x = -8 + pixel_x = -8; + pixel_y = -1 }, /obj/effect/floor_decal/corner/lime/border{ dir = 8 @@ -24914,8 +24905,8 @@ dir = 1 }, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/bmarble, /area/vr/powered/mall) @@ -24990,16 +24981,16 @@ }, /obj/item/reagent_containers/food/snacks/fuegoburrito, /obj/item/reagent_containers/food/snacks/pandenata{ - pixel_y = 4; - pixel_x = -6 + pixel_x = -6; + pixel_y = 4 }, /obj/item/reagent_containers/food/snacks/pandenata{ - pixel_y = -4; - pixel_x = -6 + pixel_x = -6; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/pandenata{ - pixel_y = 0; - pixel_x = -6 + pixel_x = -6; + pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/slice/bigbeanburrito/filled, /turf/simulated/floor/wood/alt/panel, @@ -25024,8 +25015,8 @@ /obj/random/cash/huge, /obj/item/storage/bag/cash, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "tQd" = ( @@ -25104,20 +25095,20 @@ }, /obj/structure/table/marble, /obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -6; - pixel_x = -13 + pixel_x = -13; + pixel_y = -6 }, /obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -7; - pixel_x = -8 + pixel_x = -8; + pixel_y = -7 }, /obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 7; - pixel_x = -9 + pixel_x = -9; + pixel_y = 7 }, /obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 4; - pixel_x = -12 + pixel_x = -12; + pixel_y = 4 }, /mob/living/simple_mob/animal/passive/mouse/white, /turf/simulated/floor/tiled/white, @@ -25422,8 +25413,8 @@ icon = 'icons/obj/abductor.dmi'; icon_state = "dispenser"; name = "Garmentier"; - req_access = list(777); - pixel_y = 0 + pixel_y = 0; + req_access = list(777) }, /obj/item/clothing/head/headband/maid, /obj/item/clothing/head/headband/maid, @@ -25492,25 +25483,25 @@ "ufp" = ( /obj/structure/table/wooden_reinforced, /obj/item/paper/crumpled{ - pixel_y = -3; - pixel_x = -4 + pixel_x = -4; + pixel_y = -3 }, /obj/item/reagent_containers/food/condiment/cornoil{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/dungeon) "ufu" = ( /turf/simulated/floor/water/beach{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/outdoors/powered) "ufK" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 1 + dir = 1; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/omurice, /turf/simulated/floor/wmarble, @@ -25661,8 +25652,8 @@ /area/vr/powered/shop) "ulq" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 6 + dir = 6; + id = "vrsushitrain" }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -25786,8 +25777,8 @@ "uqB" = ( /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /obj/structure/railing/grey, /turf/simulated/floor/concrete{ @@ -25913,8 +25904,8 @@ }, /obj/item/reagent_containers/food/condiment/soysauce, /obj/item/reagent_containers/food/condiment/soysauce{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -26066,12 +26057,12 @@ "uEQ" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmall4"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light_switch{ pixel_x = 11; @@ -26131,8 +26122,8 @@ pixel_y = 6 }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "uGW" = ( @@ -26162,56 +26153,56 @@ "uHU" = ( /obj/structure/table/fancyblack, /obj/item/material/kitchen/utensil/fork/plastic{ - pixel_y = 0; - pixel_x = -7 + pixel_x = -7; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork/plastic{ - pixel_y = 0; - pixel_x = -11 + pixel_x = -11; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork/plastic{ - pixel_y = 0; - pixel_x = -10 + pixel_x = -10; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork/plastic{ - pixel_y = 0; - pixel_x = -9 + pixel_x = -9; + pixel_y = 0 }, /obj/item/material/kitchen/utensil/fork/plastic{ - pixel_y = 0; - pixel_x = -8 + pixel_x = -8; + pixel_y = 0 }, /obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = 11; - pixel_x = -2 + pixel_x = -2; + pixel_y = 11 }, /obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = 11; - pixel_x = 3 + pixel_x = 3; + pixel_y = 11 }, /obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_y = 2; - pixel_x = 3 + pixel_x = 3; + pixel_y = 2 }, /obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_y = 2; - pixel_x = -2 + pixel_x = -2; + pixel_y = 2 }, /obj/item/reagent_containers/food/condiment/small/packet/ketchup{ - pixel_y = 6; - pixel_x = 8 + pixel_x = 8; + pixel_y = 6 }, /obj/item/reagent_containers/food/condiment/small/packet/ketchup{ - pixel_y = 0; - pixel_x = 8 + pixel_x = 8; + pixel_y = 0 }, /obj/item/reagent_containers/food/condiment/small/packet/ketchup{ - pixel_y = -2; - pixel_x = 8 + pixel_x = 8; + pixel_y = -2 }, /obj/item/reagent_containers/food/condiment/small/packet/ketchup{ - pixel_y = 2; - pixel_x = 8 + pixel_x = 8; + pixel_y = 2 }, /obj/machinery/light{ dir = 8 @@ -26242,8 +26233,8 @@ /area/vr/powered/mall) "uJo" = ( /obj/item/toy/plushie/green_fox{ - pixel_y = -11; - pixel_x = 9 + pixel_x = 9; + pixel_y = -11 }, /obj/structure/table/darkglass, /obj/item/clothing/under/shiny/catsuit/poly, @@ -26352,10 +26343,10 @@ /area/vr/powered) "uNc" = ( /obj/machinery/door/blast/regular{ + density = 0; dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /obj/structure/fans/tiny, @@ -26403,48 +26394,48 @@ }, /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = 3; - pixel_x = -6 + pixel_x = -6; + pixel_y = 3 }, /obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = -5; - pixel_x = -7 + pixel_x = -7; + pixel_y = -5 }, /obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = -4; - pixel_x = -3 + pixel_x = -3; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = 0; - pixel_x = -3 + pixel_x = -3; + pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 3; - pixel_x = 9 + pixel_x = 9; + pixel_y = 3 }, /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 7; - pixel_x = 9 + pixel_x = 9; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 10; - pixel_x = 9 + pixel_x = 9; + pixel_y = 10 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -12; - pixel_x = 8 + pixel_x = 8; + pixel_y = -12 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -3; - pixel_x = 8 + pixel_x = 8; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -6; - pixel_x = 8 + pixel_x = 8; + pixel_y = -6 }, /obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -9; - pixel_x = 8 + pixel_x = 8; + pixel_y = -9 }, /turf/simulated/floor/tiled/white, /area/vr/powered/mall) @@ -26530,12 +26521,12 @@ dir = 8 }, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; brightness_color = "#e060e0"; + brightness_color_ns = "#9C439C"; + dir = 8; + light_color = "#e060e0"; name = "tinted light fixture"; - dir = 8 + overlay_color = "#e060e0" }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -26734,15 +26725,15 @@ "veM" = ( /obj/structure/bed/pillowpile/orange, /obj/item/toy/plushie/orange_cat{ - pixel_y = 7; - pixel_x = 8 + pixel_x = 8; + pixel_y = 7 }, /obj/item/toy/plushie/teshari/b_yw{ pixel_y = -12 }, /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/carpet/bcarpet, /area/vr/powered/mall/dorms/secondlife5) @@ -26759,8 +26750,8 @@ /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/sink/kitchen{ dir = 8; - pixel_y = 0; - pixel_x = -12 + pixel_x = -12; + pixel_y = 0 }, /turf/simulated/floor/tiled/yellow, /area/vr/powered/mall) @@ -26778,9 +26769,9 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /obj/structure/window/reinforced/survival_pod{ @@ -26790,8 +26781,8 @@ /area/vr/powered/space/sciship) "vgg" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 8 + dir = 8; + id = "vrsushitrain" }, /turf/simulated/floor/wood/alt/panel, /area/vr/powered/mall) @@ -26823,8 +26814,8 @@ "vhw" = ( /obj/structure/prop/rock/small/water, /turf/simulated/floor/water{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "vil" = ( @@ -26838,8 +26829,8 @@ /area/vr/powered/space/whiteship) "viH" = ( /obj/effect/simple_portal/linked{ - portal_id = 69; - name = "Fast Travel to Beachhouses" + name = "Fast Travel to Beachhouses"; + portal_id = 69 }, /turf/simulated/floor/beach/sand/desert{ can_atmos_pass = 0; @@ -26850,8 +26841,8 @@ "vjd" = ( /obj/structure/bed/pillowpile/red, /obj/item/toy/plushie/blue_fox{ - pixel_y = -15; - pixel_x = 11 + pixel_x = 11; + pixel_y = -15 }, /obj/item/toy/plushie/foxbear{ pixel_y = 4 @@ -26864,12 +26855,12 @@ "vjB" = ( /obj/structure/table/woodentable, /obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -6; - pixel_x = 12 + pixel_x = 12; + pixel_y = -6 }, /obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -6; - pixel_x = 12 + pixel_x = 12; + pixel_y = -6 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -27129,8 +27120,8 @@ /area/vr/powered/dungeon) "vtI" = ( /obj/structure/bed/chair/sofa/left/brown{ - pixel_y = 0; - dir = 1 + dir = 1; + pixel_y = 0 }, /turf/simulated/floor/wmarble, /area/vr/powered/motel) @@ -27225,8 +27216,8 @@ /area/vr/powered/mall) "vyR" = ( /obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/outdoors/grass{ temperature = 293.15 @@ -27247,8 +27238,8 @@ /area/vr/powered/dungeon) "vAi" = ( /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "vBj" = ( @@ -27271,8 +27262,8 @@ /area/vr/powered/mall) "vCh" = ( /obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/wood, /area/vr/powered/dungeon) @@ -27375,8 +27366,8 @@ "vHn" = ( /obj/item/material/twohanded/sledgehammer, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "vHs" = ( @@ -27450,8 +27441,8 @@ /obj/random/cash/huge, /obj/random/cash/huge, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "vJB" = ( @@ -27466,12 +27457,12 @@ pixel_y = -5 }, /obj/random/action_figure{ - pixel_y = 5; - pixel_x = -5 + pixel_x = -5; + pixel_y = 5 }, /obj/random/action_figure{ - pixel_y = -5; - pixel_x = -5 + pixel_x = -5; + pixel_y = -5 }, /turf/simulated/floor/wood, /area/vr/powered/dungeon) @@ -27673,9 +27664,9 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/shuttle/plating, @@ -27786,12 +27777,12 @@ /area/vr/powered/cult) "vXW" = ( /obj/machinery/door/window/brigdoor/eastright{ - req_access = null; - dir = 4 + dir = 4; + req_access = null }, /obj/machinery/door/window/brigdoor/eastright{ - req_access = null; - dir = 8 + dir = 8; + req_access = null }, /turf/simulated/floor/tiled/techfloor/grid, /area/vr/powered/dungeon) @@ -27945,9 +27936,9 @@ pixel_y = 0 }, /obj/structure/fireplace{ + density = 0; dir = 2; - pixel_x = 10; - density = 0 + pixel_x = 10 }, /turf/simulated/floor/wood, /area/vr/powered/cafe) @@ -28021,8 +28012,8 @@ dir = 1 }, /turf/simulated/floor/outdoors/dirt{ - temperature = 293.15; - outdoors = 0 + outdoors = 0; + temperature = 293.15 }, /area/vr/powered/dungeon) "wgL" = ( @@ -28203,24 +28194,24 @@ pixel_y = 1 }, /obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 + pixel_x = -6; + pixel_y = 11 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 + pixel_x = 9; + pixel_y = 11 }, /turf/simulated/floor/wood, /area/vr/powered/bar) "wnA" = ( /obj/machinery/vending/medical{ + dir = 4; req_access = null; - req_log_access = null; - dir = 4 + req_log_access = null }, /turf/simulated/shuttle/floor/black, /area/vr/powered/armory) @@ -28266,8 +28257,8 @@ /area/vr/powered/mall) "wpx" = ( /turf/simulated/floor/water/pool{ - temperature = 293.15; - outdoors = 1 + outdoors = 1; + temperature = 293.15 }, /area/vr/outdoors/powered/mall) "wpA" = ( @@ -28378,8 +28369,8 @@ /area/vr/outdoors/powered/mall) "wxC" = ( /obj/machinery/door/airlock/freezer{ - name = "Restroom Stall"; - id_tag = "QTstorage2" + id_tag = "QTstorage2"; + name = "Restroom Stall" }, /turf/simulated/floor/tiled/old_tile, /area/vr/powered/mall/secondlife) @@ -28462,8 +28453,8 @@ /area/vr/powered/mall/dorms/dorms6) "wBm" = ( /mob/living/simple_mob/construct/juggernaut/behemoth{ - dir = 1; - ai_holder_type = null + ai_holder_type = null; + dir = 1 }, /turf/simulated/floor/redgrid/animated, /area/vr/powered/cult) @@ -28685,12 +28676,12 @@ "wKS" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmall6"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light_switch{ pixel_x = 11; @@ -28833,8 +28824,8 @@ "wOc" = ( /obj/structure/prop/rock, /turf/simulated/floor/outdoors/dirt{ - temperature = 311; - outdoors = 0 + outdoors = 0; + temperature = 311 }, /area/vr/powered/rocks) "wPa" = ( @@ -28867,10 +28858,10 @@ /area/vr/powered/mall) "wQa" = ( /obj/item/gun/energy/gun/burst/mg42{ - projectile_type = /obj/item/projectile/beam/pulse; burst = 15; color = "#0011FF"; - name = "\improper Erasure" + name = "\improper Erasure"; + projectile_type = /obj/item/projectile/beam/pulse }, /turf/simulated/floor/flock, /area/vr/powered/mall/backrooms) @@ -28925,12 +28916,12 @@ "wSm" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/machinery/button/remote/airlock{ + dir = 4; id = "VRmall5"; name = "Bolt Control"; pixel_x = 6; - specialfunctions = 4; - dir = 4; - pixel_y = 30 + pixel_y = 30; + specialfunctions = 4 }, /obj/machinery/light_switch{ pixel_x = 11; @@ -29075,8 +29066,8 @@ "wVW" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = 1; - pixel_x = -4 + pixel_x = -4; + pixel_y = 1 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ pixel_x = 13; @@ -29093,12 +29084,12 @@ pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -2; - pixel_x = 6 + pixel_x = 6; + pixel_y = -2 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = 5; - pixel_x = -4 + pixel_x = -4; + pixel_y = 5 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ pixel_y = 2 @@ -29110,16 +29101,16 @@ pixel_y = -8 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -8; - pixel_x = 13 + pixel_x = 13; + pixel_y = -8 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -4; - pixel_x = 13 + pixel_x = 13; + pixel_y = -4 }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled{ - pixel_y = -2; - pixel_x = 13 + pixel_x = 13; + pixel_y = -2 }, /obj/structure/window/reinforced{ dir = 1 @@ -29272,8 +29263,8 @@ /area/vr/outdoors/powered) "xfg" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 4 + dir = 4; + id = "vrsushitrain" }, /obj/structure/window/reinforced{ dir = 1 @@ -29288,12 +29279,12 @@ dir = 4 }, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; brightness_color = "#e060e0"; + brightness_color_ns = "#9C439C"; + dir = 4; + light_color = "#e060e0"; name = "tinted light fixture"; - dir = 4 + overlay_color = "#e060e0" }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -29381,12 +29372,12 @@ /area/vr/powered/mall) "xje" = ( /obj/effect/simple_portal/linked{ - portal_id = 75; - name = "Fast Travel to City" + name = "Fast Travel to City"; + portal_id = 75 }, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "xjq" = ( @@ -29412,8 +29403,8 @@ /area/vr/powered/cult) "xkd" = ( /turf/simulated/floor/outdoors/sidewalk{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "xkp" = ( @@ -29457,8 +29448,8 @@ /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced, /obj/structure/prop/statue/phoron{ - pixel_y = 0; - pixel_x = 16 + pixel_x = 16; + pixel_y = 0 }, /turf/simulated/floor/redgrid/animated, /area/vr/powered/cult) @@ -29565,40 +29556,40 @@ dir = 4 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 6; - pixel_x = 1 + pixel_x = 1; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 6; - pixel_x = 6 + pixel_x = 6; + pixel_y = 6 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 1; - pixel_x = 6 + pixel_x = 6; + pixel_y = 1 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = -3; - pixel_x = 6 + pixel_x = 6; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = -3; - pixel_x = 1 + pixel_x = 1; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/chawanmushi{ - pixel_y = 2; - pixel_x = 1 + pixel_x = 1; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/sashimi{ - pixel_y = 7; - pixel_x = -6 + pixel_x = -6; + pixel_y = 7 }, /obj/item/reagent_containers/food/snacks/sashimi{ - pixel_y = -3; - pixel_x = -6 + pixel_x = -6; + pixel_y = -3 }, /obj/item/reagent_containers/food/snacks/sashimi{ - pixel_y = 2; - pixel_x = -6 + pixel_x = -6; + pixel_y = 2 }, /turf/simulated/floor/wmarble, /area/vr/powered/mall) @@ -29757,8 +29748,8 @@ /area/vr/powered/dungeon) "xBc" = ( /mob/living/simple_mob/construct/wraith{ - dir = 1; - ai_holder_type = null + ai_holder_type = null; + dir = 1 }, /turf/simulated/floor/redgrid/animated, /area/vr/powered/cult) @@ -29781,8 +29772,8 @@ /area/vr/powered/art) "xDz" = ( /turf/simulated/floor/water/beach{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall/vw) "xDK" = ( @@ -29817,8 +29808,8 @@ /area/vr/powered/space/whiteship) "xEd" = ( /mob/living/simple_mob/construct/juggernaut/behemoth{ - dir = 1; - ai_holder_type = null + ai_holder_type = null; + dir = 1 }, /turf/simulated/floor/tiled/steel_dirty, /area/vr/powered/cult) @@ -29863,31 +29854,31 @@ pixel_y = 0 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 2; - pixel_x = -3 + pixel_x = -3; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 2; - pixel_x = 4 + pixel_x = 4; + pixel_y = 2 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = -2; - pixel_x = -1 + pixel_x = -1; + pixel_y = -2 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = -4; - pixel_x = 4 + pixel_x = 4; + pixel_y = -4 }, /obj/structure/window/reinforced{ dir = 4 }, /obj/item/reagent_containers/food/snacks/sliceable/sushi{ - pixel_y = 8; - pixel_x = -1 + pixel_x = -1; + pixel_y = 8 }, /obj/machinery/light{ dir = 4; @@ -29928,8 +29919,8 @@ /area/vr/powered/mall) "xGW" = ( /obj/structure/sign/poster/custom{ - pixel_y = 0; - dir = 8 + dir = 8; + pixel_y = 0 }, /turf/simulated/floor/carpet/brown, /area/vr/powered/mall) @@ -29943,8 +29934,8 @@ /area/vr/powered/mall/dorms/dorms1) "xHm" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 4 + dir = 4; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled, /turf/simulated/floor/wood/alt/panel, @@ -30039,16 +30030,16 @@ "xKI" = ( /obj/structure/table/darkglass, /obj/item/bodysnatcher{ - pixel_y = 4; - pixel_x = 3 + pixel_x = 3; + pixel_y = 4 }, /obj/item/bodysnatcher{ - pixel_y = -2; - pixel_x = -2 + pixel_x = -2; + pixel_y = -2 }, /obj/item/bodysnatcher{ - pixel_y = -4; - pixel_x = 6 + pixel_x = 6; + pixel_y = -4 }, /turf/simulated/floor/tiled/techfloor, /area/vr/powered/mall/secondlife) @@ -30151,8 +30142,8 @@ "xQE" = ( /obj/fiftyspawner/wood, /turf/simulated/floor/outdoors/sidewalk/slab{ - temperature = 293.15; - movement_cost = 0 + movement_cost = 0; + temperature = 293.15 }, /area/vr/outdoors/powered) "xQL" = ( @@ -30205,9 +30196,9 @@ name = "reinforced grille" }, /obj/machinery/door/blast/regular{ + density = 0; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; - density = 0; opacity = 0 }, /turf/simulated/shuttle/plating, @@ -30286,8 +30277,8 @@ light_color = "#DDFFD3" }, /turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/dungeon) "xXi" = ( @@ -30401,12 +30392,12 @@ pixel_y = 0 }, /obj/item/storage/box/glasses/rocks{ - pixel_y = -2; - pixel_x = -10 + pixel_x = -10; + pixel_y = -2 }, /obj/item/storage/box/glasses/square{ - pixel_y = -2; - pixel_x = 12 + pixel_x = 12; + pixel_y = -2 }, /turf/unsimulated/shuttle/floor/purple, /area/vr/powered/mall/secondlife) @@ -30451,24 +30442,24 @@ pixel_y = 1 }, /obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 + pixel_x = -6; + pixel_y = 11 }, /obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 + pixel_x = 9; + pixel_y = 11 }, /turf/simulated/floor/wood/alt/parquet, /area/vr/powered/mall) "yeM" = ( /obj/structure/table/woodentable, /obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -2; - pixel_x = 3 + pixel_x = 3; + pixel_y = -2 }, /turf/simulated/floor/wood, /area/vr/powered/mall) @@ -30490,16 +30481,16 @@ "yft" = ( /obj/structure/table/hardwoodtable, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; + brightness_color = "#e060e0"; brightness_color_ns = "#9C439C"; light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" + name = "tinted light fixture"; + overlay_color = "#e060e0" }, /turf/simulated/floor/outdoors/sidewalk/slab{ movement_cost = 0; - temperature = 293.15; - outdoors = -1 + outdoors = -1; + temperature = 293.15 }, /area/vr/powered/mall) "yfB" = ( @@ -30576,31 +30567,31 @@ /obj/structure/window/basic, /obj/structure/table/rack/wood, /obj/item/clothing/head/beret{ - pixel_y = -5; - pixel_x = -6 + pixel_x = -6; + pixel_y = -5 }, /obj/item/clothing/head/beret/solgov/fleet{ - pixel_y = 1; - pixel_x = -6 + pixel_x = -6; + pixel_y = 1 }, /obj/item/clothing/head/collectable/wizard{ - pixel_y = -3; - pixel_x = 4 + pixel_x = 4; + pixel_y = -3 }, /obj/item/clothing/head/collectable/captain{ - pixel_y = 0; - pixel_x = 5 + pixel_x = 5; + pixel_y = 0 }, /obj/item/clothing/head/collectable/HoS{ - pixel_y = 7; - pixel_x = 5 + pixel_x = 5; + pixel_y = 7 }, /obj/machinery/light/floortube{ - overlay_color = "#e060e0"; + brightness_color = "#e060e0"; brightness_color_ns = "#9C439C"; light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" + name = "tinted light fixture"; + overlay_color = "#e060e0" }, /turf/simulated/floor/wood/alt/parquet/turfpack, /area/vr/powered/mall) @@ -30637,8 +30628,8 @@ /area/vr/powered/space/whiteship) "ykC" = ( /obj/machinery/conveyor{ - id = "vrsushitrain"; - dir = 8 + dir = 8; + id = "vrsushitrain" }, /obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled, /turf/simulated/floor/wood/alt/panel, @@ -31659,19 +31650,19 @@ lTR lTR hHa hHa -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA kIl kIl kIl @@ -31917,7 +31908,7 @@ dXV lTR vcM vcM -cwz +uiA tgD tgD tgD @@ -31929,7 +31920,7 @@ tgD tgD tgD tgD -cwz +uiA kIl kIl kIl @@ -32175,7 +32166,7 @@ vcM vcM vcM vcM -cwz +uiA sww iyq iyq @@ -32187,7 +32178,7 @@ udG udG udG tgD -cwz +uiA kIl kIl kIl @@ -32433,7 +32424,7 @@ viH fqb vcM vcM -cwz +uiA sww qyR rcK @@ -32445,7 +32436,7 @@ rcK rcK tGi tgD -cwz +uiA kIl kIl kIl @@ -32691,7 +32682,7 @@ fqb fqb aZv aZv -cwz +uiA tgD rcK rcK @@ -32703,7 +32694,7 @@ pVA pVA pVA tgD -cwz +uiA kIl kIl kIl @@ -32949,7 +32940,7 @@ aZv aZv aZv aZv -cwz +uiA rcK rcK rcK @@ -32961,7 +32952,7 @@ rcK rcK rcK rcK -cwz +uiA kIl kIl kIl @@ -33219,7 +33210,7 @@ rcK rcK rcK rcK -cwz +uiA dRV dRV kIl @@ -33465,7 +33456,7 @@ rLE rLE rLE aZv -cwz +uiA rcK rcK rcK @@ -33477,7 +33468,7 @@ rcK rcK rcK rcK -cwz +uiA kIl kIl kIl @@ -33723,7 +33714,7 @@ hiz hiz rLE aZv -cwz +uiA tgD tvI tvI @@ -33735,7 +33726,7 @@ acf mRY krk tgD -cwz +uiA kIl dRV crG @@ -33981,7 +33972,7 @@ mOo hiz rLE aZv -cwz +uiA tgD qyR rcK @@ -33993,7 +33984,7 @@ rcK rcK uFe tgD -cwz +uiA kIl kIl kIl @@ -34239,7 +34230,7 @@ hiz pfw rLE aZv -cwz +uiA tgD lvo wCR @@ -34251,7 +34242,7 @@ lli lli cdu tgD -cwz +uiA kIl kIl kIl @@ -34497,7 +34488,7 @@ eEd hiz rLE aZv -cwz +uiA tgD tgD tgD @@ -34509,7 +34500,7 @@ eTS tim tgD tgD -cwz +uiA kIl kIl kIl @@ -34755,19 +34746,19 @@ eEd hiz rLE aZv -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA sns sns sns @@ -34782,8 +34773,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR wHR wHR @@ -35040,8 +35031,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR cKr cKr @@ -35298,8 +35289,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR cKr cKr @@ -35556,8 +35547,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR wHR wHR @@ -35731,8 +35722,8 @@ vKr vKr vKr pha -cwz -cwz +uiA +uiA cem cIZ vKr @@ -35814,8 +35805,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA kIo kIo kIo @@ -35988,9 +35979,9 @@ vKr iQe pOg elg -cwz +uiA oaU -cwz +uiA vKr vKr vKr @@ -36072,8 +36063,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA kIo kIo kIo @@ -36248,7 +36239,7 @@ reW elg cxq sUK -cwz +uiA vKr rgY vKr @@ -36330,8 +36321,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA kIo qTf kIo @@ -36588,8 +36579,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR wHR wHR @@ -36846,8 +36837,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR cKr cKr @@ -37104,8 +37095,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR cKr cKr @@ -37362,8 +37353,8 @@ sns sns sns sns -cwz -cwz +uiA +uiA wHR wHR wHR @@ -37880,8 +37871,8 @@ kIl kIl tvB xQE -cwz -cwz +uiA +uiA aed xoh xoh @@ -38138,8 +38129,8 @@ kIl kIl kIl xQE -cwz -cwz +uiA +uiA hvI xoh oHJ @@ -38396,8 +38387,8 @@ kIl kIl kIl xQE -cwz -cwz +uiA +uiA uGw xoh oHJ @@ -38653,9 +38644,9 @@ kIl kIl kIl tkF -cwz -cwz -cwz +uiA +uiA +uiA eAb xoh oHJ @@ -38911,9 +38902,9 @@ dRV dRV kIl ntz -cwz -cwz -cwz +uiA +uiA +uiA eAb xoh qyT @@ -39169,8 +39160,8 @@ kIl kIl kIl tkF -cwz -cwz +uiA +uiA jXX mQQ xoh @@ -39427,9 +39418,9 @@ kIl crG kIl kIl -cwz -cwz -cwz +uiA +uiA +uiA iuB xoh bLO @@ -39685,10 +39676,10 @@ kIl dRV kIl kIl -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA rDu rDu rDu @@ -39943,9 +39934,9 @@ kIl kIl kIl kIl -cwz -cwz -cwz +uiA +uiA +uiA pjA xoh oqY @@ -40201,10 +40192,10 @@ kIl kIl dRV kIl -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA xoh xoh rDu @@ -40459,11 +40450,11 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA xoh rDu rDu @@ -40717,11 +40708,11 @@ kIl kIl kIl dRV -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA rDu rDu rDu @@ -40975,11 +40966,11 @@ kIl dRV kIl dRV -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA rDu rDu rDu @@ -41233,11 +41224,11 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA xoh tkb rDu @@ -41491,11 +41482,11 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA xoh rDu rDu @@ -41749,11 +41740,11 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA xoh xoh rDu @@ -42009,16 +42000,16 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA hHa vRo vRo @@ -42267,16 +42258,16 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA hHa vRo vRo @@ -42525,16 +42516,16 @@ kIl kIl kIl kIl -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA hHa vRo vRo @@ -46099,21 +46090,21 @@ sns sns hHa sns -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA kIl sdm ttg @@ -46285,9 +46276,9 @@ aTx aTx aTx pwc -cwz -cwz -cwz +uiA +uiA +uiA pwc pwc pwc @@ -46357,7 +46348,7 @@ sns sns hHa sns -cwz +uiA uEa uEa uEa @@ -46370,8 +46361,8 @@ uEa uEa uEa uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -46543,9 +46534,9 @@ aTx aTx aTx pwc -cwz +uiA sFk -cwz +uiA pwc pwc pwc @@ -46615,7 +46606,7 @@ sns sns hHa sns -cwz +uiA uEa fcS vYv @@ -46628,8 +46619,8 @@ nPi rLu fVp uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -46801,9 +46792,9 @@ aTx aTx aTx lTR -cwz -cwz -cwz +uiA +uiA +uiA pwc pwc pwc @@ -46873,7 +46864,7 @@ sns sns hHa sns -cwz +uiA uEa cRO lvU @@ -46886,8 +46877,8 @@ lvU lvU jHb uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -47131,7 +47122,7 @@ sns sns hHa sns -cwz +uiA uEa wFG gqq @@ -47144,8 +47135,8 @@ jbF gqq ffS uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -47389,7 +47380,7 @@ sns sns hHa sns -cwz +uiA uEa pSh pSh @@ -47402,8 +47393,8 @@ pSh pSh pSh uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -47647,7 +47638,7 @@ sns sns hHa sns -cwz +uiA uEa svI vYv @@ -47660,8 +47651,8 @@ hgm iav lKP vYv -cwz -cwz +uiA +uiA kIl sdm ttg @@ -47905,7 +47896,7 @@ sns sns hHa sns -cwz +uiA uEa ion cLE @@ -47918,8 +47909,8 @@ cLE cLE cLE cLE -cwz -cwz +uiA +uiA kIl sdm ttg @@ -48163,7 +48154,7 @@ sns sns hHa sns -cwz +uiA uEa kOr gqq @@ -48176,8 +48167,8 @@ gqq gqq gqq gqq -cwz -cwz +uiA +uiA crG sdm ttg @@ -48421,7 +48412,7 @@ sns sns hHa sns -cwz +uiA uEa pSh pSh @@ -48434,8 +48425,8 @@ lsr pSh pSh uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -48679,7 +48670,7 @@ sns sns hHa sns -cwz +uiA uEa mUd vYv @@ -48692,8 +48683,8 @@ lvU lvU nSr uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -48937,7 +48928,7 @@ sns sns hHa sns -cwz +uiA uEa jRl lvU @@ -48950,8 +48941,8 @@ lvU lvU szE uEa -cwz -cwz +uiA +uiA vdd sdm ttg @@ -49195,7 +49186,7 @@ sns sns hHa sns -cwz +uiA uEa vDz dlu @@ -49208,8 +49199,8 @@ frW rUY pgm uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -49453,7 +49444,7 @@ sns sns hHa sns -cwz +uiA uEa uEa uEa @@ -49466,8 +49457,8 @@ uEa uEa uEa uEa -cwz -cwz +uiA +uiA kIl sdm ttg @@ -49711,21 +49702,21 @@ sns sns hHa sns -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz -cwz +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA +uiA kIl sdm ttg @@ -65582,14 +65573,14 @@ lTR dsr dsr tPv -cwz +uiA tPv tPv tPv tPv tPv tPv -cwz +uiA tPv tPv tPv @@ -78000,9 +77991,9 @@ mbF jPG jPG mGX -cwz -cwz -cwz +uiA +uiA +uiA aTx aTx mGX @@ -78258,9 +78249,9 @@ mbF jPG ulb mGX -cwz +uiA xje -cwz +uiA aTx aTx mGX @@ -78516,9 +78507,9 @@ mbF jPG jPG mGX -cwz -cwz -cwz +uiA +uiA +uiA aTx aTx mGX diff --git a/vorestation.dme b/vorestation.dme index 8529c8ac0c..25ce0e591e 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -5220,10 +5220,6 @@ #include "modular_chomp\maps\submaps\surface_submaps\mountains\mountains_areas.dm" #include "modular_chomp\maps\submaps\surface_submaps\plains\plains.dm" #include "modular_chomp\maps\submaps\surface_submaps\plains\plains_areas.dm" -#include "modular_chomp\maps\submaps\surface_submaps\valley\valley.dm" -#include "modular_chomp\maps\submaps\surface_submaps\valley\valley_areas.dm" -#include "modular_chomp\maps\submaps\surface_submaps\valleyend\valleyend.dm" -#include "modular_chomp\maps\submaps\surface_submaps\valleyend\valleyend_areas.dm" #include "modular_chomp\maps\submaps\surface_submaps\wilderness\wilderness.dm" #include "modular_chomp\maps\submaps\surface_submaps\wilderness\wilderness_areas.dm" #include "modular_chomp\maps\virtual_reality\constructVR.dm"